VOL-2014: Rebase bal30-dev branch with master and re-verify sanity with SEBA2.0 and VOLTHA2.x before merge to master
Squashed all commits from bal30-dev branch to master branch as a single commit.
Bumped version to 2.0.0-dev .
Update README.md with the required ONL version for BAL3.1 .
VOL-2130: Wrong queue id assigned for downstream queue on tm_sched
for the subscriber when using single gem port.
Use queue_id as 0 when using single gem port.
Issues need to be taken care:
VOL-1580: Support reporting ONU Registration ID as part of ONU Activation Indication
- commented the code developed for VOL-1580 to fetch ONU registration ID as it uses BAL2.6 specific API's.
- Need to check how the same can be achieved using BAL3.x API's to fetch ONU registration ID
Set .gitreview defaultbranch to bal30-dev
Rebase change - Removed .gitreview defaultbranch so that by default it will point to master
Change-Id: Ib57e52e98cf09f4fa3dbaa9156a4375b7dc6ee43
Rebase: [VOL-1635] [BAL3.0 Bridade] OLT Activation [VOL-1636] [BAL3.0 Bridade] ONU Discovery,
This OpenOLT agent supports the BAL V3.0.3.3 SDK. OLT/ONU activation from voltha-1.7 is successful
Change-Id: I860b31317172139cd4c4244a93e79e0c3ce4fdf8
Rebase: [VOL-1685][BAL3.0 Bridade] generate OpenOLT debian package file
Change-Id: Ib0332d948602bf7892b6aae91a4147356237f7e2
Rebase: [VOL-1685][BAL3.0 Brigade] generate OpenOLT debian package file
missing copy shell files (dev_mgmt_daemon and openolt).
Change-Id: Id29dc24be4d1d5fc12a26884e5b5a69de91fbd69
Rebase: [VOL-1685][BAL3.0 Brigade] generate OpenOLT debian package file
Change-Id: Ic5453616c0dbdbc1fb1eb241feba1cbfca5e8e85
Rebase: [VOL-1852][BAL3.0 Brigade] Support Edge-core OLT ASFvOLT16 (XGS-PON) and
ASGvOLT64 (GPON) devices
Change-Id: I316d35bc76c38b5381e8896148b4ee5cebbd1099
VOL-1850: Fix packet duplication with TM Queue Mapping profile
Fix for US and DS scheduler ID allocation irrespective of device type(asfvolt16/asfvolt64)
README.md file update with BAL3.1.1.1 specifications
Change-Id: I255bf7a4ff35771e9c628bb822ba2190a1fcd5ed
Rebase: [VOL-1787] : This commit sets up a unit-test framework for openolt
agent based on gtest, gmock and c-mock utilities.
A sample unit-test case to test EnableOlt success case is also
added. More test cases will be added in future commit.
Change-Id: If020be489a04d97df5fcbc15e9207deeee2fcfac
Rebase: [VOL-2040]: Patch the macro required by core.cc into bcmos_system.h file
Change-Id: Ic841785b2ce451b1acaf007074b8c458687bc753
Rebase: [VOL-2043] : OLT Enable Test Case
- Added more test cases for OLT Enable. Now covers all scenarios.
- Fixed typos in unit test README.md
Change-Id: Ib931d89cedee78fe40ca67761a028365a047ebc3
Rebase: VOL-1941: Use protobufs from the voltha-protos repo, not a copy
- Use protobufs from the voltha-protos repo, not a copy
- Provided option to specify the openolt proto version via make option
- Removed duplicate README.md
Change-Id: Id67714c8119521f8358aaa9245268c47b7e843cf
diff --git a/agent/src/core.cc b/agent/src/core.cc
index 83bd99a..ef92547 100644
--- a/agent/src/core.cc
+++ b/agent/src/core.cc
@@ -20,11 +20,11 @@
#include <string>
#include "Queue.h"
-#include <iostream>
#include <sstream>
#include <chrono>
#include <thread>
#include <bitset>
+#include <inttypes.h>
#include "device.h"
#include "core.h"
@@ -36,47 +36,86 @@
extern "C"
{
-#include <bcmos_system.h>
-#include <bal_api.h>
-#include <bal_api_end.h>
+#include <bcmolt_api.h>
+#include <bcmolt_host_api.h>
+#include <bcmolt_api_model_supporting_enums.h>
+
+#include <bal_version.h>
+#include <bcmolt_api_conn_mgr.h>
+//CLI header files
+#include <bcmcli_session.h>
+#include <bcmcli.h>
+#include <bcm_api_cli.h>
+
+#include <bcmos_common.h>
+#include <bcm_config.h>
// FIXME : dependency problem
// #include <bcm_common_gpon.h>
// #include <bcm_dev_log_task.h>
}
-// These need patched into bal_model_types.h directly. But, with above extern "C", it cannot be done
-inline bcmbal_action_cmd_id& operator|=(bcmbal_action_cmd_id& a, bcmbal_action_cmd_id b) {return a = static_cast<bcmbal_action_cmd_id>(static_cast<int>(a) | static_cast<int>(b));}
-inline bcmbal_action_id& operator|=(bcmbal_action_id& a, bcmbal_action_id b) {return a = static_cast<bcmbal_action_id>(static_cast<int>(a) | static_cast<int>(b));}
-inline bcmbal_classifier_id& operator|=(bcmbal_classifier_id& a, bcmbal_classifier_id b) {return a = static_cast<bcmbal_classifier_id>(static_cast<int>(a) | static_cast<int>(b));}
-inline bcmbal_tm_sched_owner_agg_port_id& operator|=(bcmbal_tm_sched_owner_agg_port_id& a, bcmbal_tm_sched_owner_agg_port_id b) {return a = static_cast<bcmbal_tm_sched_owner_agg_port_id>(static_cast<int>(a) | static_cast<int>(b));}
-inline bcmbal_tm_sched_parent_id& operator|=(bcmbal_tm_sched_parent_id& a, bcmbal_tm_sched_parent_id b) {return a = static_cast<bcmbal_tm_sched_parent_id>(static_cast<int>(a) | static_cast<int>(b));}
-inline bcmbal_tm_shaping_id& operator|=(bcmbal_tm_shaping_id& a, bcmbal_tm_shaping_id b) {return a = static_cast<bcmbal_tm_shaping_id>(static_cast<int>(a) | static_cast<int>(b));}
+
dev_log_id openolt_log_id = bcm_dev_log_id_register("OPENOLT", DEV_LOG_LEVEL_INFO, DEV_LOG_ID_TYPE_BOTH);
dev_log_id omci_log_id = bcm_dev_log_id_register("OMCI", DEV_LOG_LEVEL_INFO, DEV_LOG_ID_TYPE_BOTH);
-#define MAX_SUPPORTED_INTF 16
#define BAL_RSC_MANAGER_BASE_TM_SCHED_ID 16384
#define MAX_TM_QUEUE_ID 8192
-#define MAX_TM_SCHED_ID 16384
+#define MAX_TM_QMP_ID 16
+#define TMQ_MAP_PROFILE_SIZE 8
+#define MAX_TM_SCHED_ID 1023
+#define MAX_SUBS_TM_SCHED_ID (MAX_SUPPORTED_PON == 16 ? MAX_TM_SCHED_ID-4-16 : MAX_TM_SCHED_ID-10-64)
#define EAP_ETHER_TYPE 34958
+#define XGS_BANDWIDTH_GRANULARITY 16000
+#define GPON_BANDWIDTH_GRANULARITY 32000
+#define FILL_ARRAY(ARRAY,START,END,VALUE) for(int i=START;i<END;ARRAY[i++]=VALUE);
+#define COUNT_OF(array) (sizeof(array) / sizeof(array[0]))
+
+#define GET_FLOW_INTERFACE_TYPE(type) \
+ (type == BCMOLT_FLOW_INTERFACE_TYPE_PON) ? "PON" : \
+ (type == BCMOLT_FLOW_INTERFACE_TYPE_NNI) ? "NNI" : \
+ (type == BCMOLT_FLOW_INTERFACE_TYPE_HOST) ? "HOST" : "unknown"
+#define GET_PKT_TAG_TYPE(type) \
+ (type == BCMOLT_PKT_TAG_TYPE_UNTAGGED) ? "UNTAG" : \
+ (type == BCMOLT_PKT_TAG_TYPE_SINGLE_TAG) ? "SINGLE_TAG" : \
+ (type == BCMOLT_PKT_TAG_TYPE_DOUBLE_TAG) ? "DOUBLE_TAG" : "unknown"
static unsigned int num_of_nni_ports = 0;
static unsigned int num_of_pon_ports = 0;
-static std::string intf_technologies[MAX_SUPPORTED_INTF];
+static std::string intf_technologies[MAX_SUPPORTED_PON];
static const std::string UNKNOWN_TECH("unknown");
static const std::string MIXED_TECH("mixed");
static std::string board_technology(UNKNOWN_TECH);
+static std::string chip_family(UNKNOWN_TECH);
static unsigned int OPENOLT_FIELD_LEN = 200;
-static std::string firmware_version = "Openolt.2018.10.04";
+static std::string firmware_version = "Openolt.2019.07.01";
-const uint32_t tm_upstream_sched_id_start = 18432;
-const uint32_t tm_downstream_sched_id_start = 16384;
-//0 to 3 are default queues. Lets not use them.
-const uint32_t tm_queue_id_start = 4;
-// Upto 8 fixed Upstream. Queue id 0 to 3 are pre-created, lets not use them.
-const uint32_t us_fixed_queue_id_list[8] = {4, 5, 6, 7, 8, 9, 10, 11};
+const uint32_t tm_upstream_sched_id_start = (MAX_SUPPORTED_PON == 16 ? \
+ MAX_TM_SCHED_ID-3 : MAX_TM_SCHED_ID-9);
+const uint32_t tm_downstream_sched_id_start = (MAX_SUPPORTED_PON == 16 ? \
+ tm_upstream_sched_id_start-16 : tm_upstream_sched_id_start-64);
+
+/* Max Queue ID supported is 7 so based on priority_q configured for GEMPORTS
+in TECH PROFILE respective Queue ID from this list will be used for both
+US and DS Queues*/
+const uint32_t queue_id_list[8] = {0, 1, 2, 3, 4, 5, 6, 7};
+
const std::string upstream = "upstream";
const std::string downstream = "downstream";
+bcmolt_oltid dev_id = 0;
+
+/* Current session */
+static bcmcli_session *current_session;
+static bcmcli_entry *api_parent_dir;
+bcmos_bool status_bcm_cli_quit = BCMOS_FALSE;
+bcmos_task bal_cli_thread;
+const char *bal_cli_thread_name = "bal_cli_thread";
+uint16_t flow_id_counters = 0;
+int flow_id_data[16384][2];
+
+/* QOS Type has been pre-defined as Fixed Queue but it will be updated based on number of GEMPORTS
+ associated for a given subscriber. If GEM count = 1 for a given subscriber, qos_type will be Fixed Queue
+ else Priority to Queue */
+bcmolt_egress_qos_type qos_type = BCMOLT_EGRESS_QOS_TYPE_FIXED_QUEUE;
State state;
@@ -84,23 +123,23 @@
static std::map<uint32_t, uint32_t> flowid_to_gemport; // For mapping downstream flows into gemports
static std::map<uint32_t, std::set<uint32_t> > port_to_flows; // For mapping logical ports to downstream flows
-// This represents the Key to 'queue_map' map.
-// Represents (pon_intf_id, onu_id, uni_id, gemport_id, direction)
-typedef std::tuple<uint32_t, uint32_t, uint32_t, uint32_t, std::string> queue_map_key_tuple;
-// 'queue_map' maps queue_map_key_tuple to downstream queue id present
-// on the Subscriber Scheduler
-static std::map<queue_map_key_tuple, int> queue_map;
-// This represents the Key to 'sched_map' map.
-// Represents (pon_intf_id, onu_id, uni_id, direction)
-
+/* This represents the Key to 'sched_map' map.
+ Represents (pon_intf_id, onu_id, uni_id, direction) */
typedef std::tuple<uint32_t, uint32_t, uint32_t, std::string> sched_map_key_tuple;
-// 'sched_map' maps sched_map_key_tuple to DBA (Upstream) or
-// Subscriber (Downstream) Scheduler ID
+/* 'sched_map' maps sched_map_key_tuple to DBA (Upstream) or
+ Subscriber (Downstream) Scheduler ID */
static std::map<sched_map_key_tuple, int> sched_map;
+/* This represents the Key to 'sched_qmp_id_map' map.
+Represents (sched_id, pon_intf_id, onu_id, uni_id) */
+typedef std::tuple<uint32_t, uint32_t, uint32_t, uint32_t> sched_qmp_id_map_key_tuple;
+/* 'sched_qmp_id_map' maps sched_qmp_id_map_key_tuple to TM Queue Mapping Profile ID */
+static std::map<sched_qmp_id_map_key_tuple, int> sched_qmp_id_map;
+/* 'qmp_id_to_qmp_map' maps TM Queue Mapping Profile ID to TM Queue Mapping Profile */
+static std::map<int, std::vector < uint32_t > > qmp_id_to_qmp_map;
-std::bitset<MAX_TM_QUEUE_ID> tm_queue_bitset;
std::bitset<MAX_TM_SCHED_ID> tm_sched_bitset;
+std::bitset<MAX_TM_QMP_ID> tm_qmp_bitset;
static bcmos_fastlock data_lock;
@@ -111,10 +150,16 @@
uint32_t port_no, uint32_t alloc_id, tech_profile::AdditionalBW additional_bw, uint32_t weight, \
uint32_t priority, tech_profile::SchedulingPolicy sched_policy,
tech_profile::TrafficShapingInfo traffic_shaping_info);
-static bcmos_errno RemoveSched(int intf_id, int onu_id, int uni_id, std::string direction);
+static bcmos_errno RemoveSched(int intf_id, int onu_id, int uni_id, int alloc_id, std::string direction);
static bcmos_errno CreateQueue(std::string direction, uint32_t access_intf_id, uint32_t onu_id, uint32_t uni_id, \
uint32_t priority, uint32_t gemport_id);
static bcmos_errno RemoveQueue(std::string direction, int intf_id, int onu_id, int uni_id, uint32_t port_no, int alloc_id);
+static bcmos_errno CreateDefaultSched(uint32_t intf_id, const std::string direction);
+static bcmos_errno CreateDefaultQueue(uint32_t intf_id, const std::string direction);
+
+uint16_t get_dev_id(void) {
+ return dev_id;
+}
/**
* Returns the default NNI (Upstream direction) or PON (Downstream direction) scheduler
@@ -134,96 +179,12 @@
return tm_downstream_sched_id_start + intf_id;
}
else {
- BCM_LOG(ERROR, openolt_log_id, "invalid direction - %s\n", direction.c_str());
+ OPENOLT_LOG(ERROR, openolt_log_id, "invalid direction - %s\n", direction.c_str());
return 0;
}
}
/**
-* Gets a unique tm_queue_id for a given intf_id, onu_id, uni_id, gemport_id, direction
-* The tm_queue_id is locally cached in a map, so that it can rendered when necessary.
-* VOLTHA replays whole configuration on OLT reboot, so caching locally is not a problem
-*
-* @param intf_id NNI or PON intf ID
-* @param onu_id ONU ID
-* @param uni_id UNI ID
-* @param gemport_id GEM Port ID
-* @param direction Upstream or downstream
-*
-* @return tm_queue_id
-*/
-int get_tm_queue_id(int intf_id, int onu_id, int uni_id, int gemport_id, std::string direction) {
- queue_map_key_tuple key(intf_id, onu_id, uni_id, gemport_id, direction);
- int queue_id = -1;
-
- std::map<queue_map_key_tuple, int>::const_iterator it = queue_map.find(key);
- if (it != queue_map.end()) {
- queue_id = it->second;
- }
- if (queue_id != -1) {
- return queue_id;
- }
-
- bcmos_fastlock_lock(&data_lock);
- // Complexity of O(n). Is there better way that can avoid linear search?
- for (queue_id = 0; queue_id < MAX_TM_QUEUE_ID; queue_id++) {
- if (tm_queue_bitset[queue_id] == 0) {
- tm_queue_bitset[queue_id] = 1;
- break;
- }
- }
- bcmos_fastlock_unlock(&data_lock, 0);
-
- if (queue_id < MAX_TM_QUEUE_ID) {
- bcmos_fastlock_lock(&data_lock);
- queue_map[key] = queue_id;
- bcmos_fastlock_unlock(&data_lock, 0);
- return queue_id;
- } else {
- return -1;
- }
-}
-
-/**
-* Update tm_queue_id for a given intf_id, onu_id, uni_id, gemport_id, direction
-*
-* @param intf_id NNI or PON intf ID
-* @param onu_id ONU ID
-* @param uni_id UNI ID
-* @param gemport_id GEM Port ID
-* @param direction Upstream or downstream
-* @param tm_queue_id tm_queue_id
-*/
-void update_tm_queue_id(int pon_intf_id, int onu_id, int uni_id, int gemport_id, std::string direction,
- uint32_t queue_id) {
- queue_map_key_tuple key(pon_intf_id, onu_id, uni_id, gemport_id, direction);
- bcmos_fastlock_lock(&data_lock);
- queue_map[key] = queue_id;
- bcmos_fastlock_unlock(&data_lock, 0);
-}
-
-/**
-* Free tm_queue_id for a given intf_id, onu_id, uni_id, gemport_id, direction
-*
-* @param intf_id NNI or PON intf ID
-* @param onu_id ONU ID
-* @param uni_id UNI ID
-* @param gemport_id GEM Port ID
-* @param direction Upstream or downstream
-*/
-void free_tm_queue_id(int pon_intf_id, int onu_id, int uni_id, int gemport_id, std::string direction) {
- queue_map_key_tuple key(pon_intf_id, onu_id, uni_id, gemport_id, direction);
- std::map<queue_map_key_tuple, int>::const_iterator it;
- bcmos_fastlock_lock(&data_lock);
- it = queue_map.find(key);
- if (it != queue_map.end()) {
- tm_queue_bitset[it->second] = 0;
- queue_map.erase(it);
- }
- bcmos_fastlock_unlock(&data_lock, 0);
-}
-
-/**
* Gets a unique tm_sched_id for a given intf_id, onu_id, uni_id, gemport_id, direction
* The tm_sched_id is locally cached in a map, so that it can rendered when necessary.
* VOLTHA replays whole configuration on OLT reboot, so caching locally is not a problem
@@ -291,15 +252,248 @@
bool is_tm_sched_id_present(int pon_intf_id, int onu_id, int uni_id, std::string direction) {
sched_map_key_tuple key(pon_intf_id, onu_id, uni_id, direction);
- return sched_map.count(key) > 0 ? true: false;
+ std::map<sched_map_key_tuple, int>::const_iterator it = sched_map.find(key);
+ if (it != sched_map.end()) {
+ return true;
+ }
+ return false;
}
-bool is_tm_queue_id_present(int pon_intf_id, int onu_id, int uni_id, int gemport_id, std::string direction) {
- queue_map_key_tuple key(pon_intf_id, onu_id, uni_id, gemport_id, direction);
- return queue_map.count(key) > 0 ? true: false;
+/**
+* Check whether given two tm qmp profiles are equal or not
+*
+* @param tmq_map_profileA <vector> TM QUEUE MAPPING PROFILE
+* @param tmq_map_profileB <vector> TM QUEUE MAPPING PROFILE
+*
+* @return boolean, true if given tmq_map_profiles are equal else false
+*/
+
+bool check_tm_qmp_equality(std::vector<uint32_t> tmq_map_profileA, std::vector<uint32_t> tmq_map_profileB) {
+ for (uint32_t i = 0; i < TMQ_MAP_PROFILE_SIZE; i++) {
+ if (tmq_map_profileA[i] != tmq_map_profileB[i]) {
+ return false;
+ }
+ }
+ return true;
}
-char* openolt_read_sysinfo(char* field_name, char* field_val)
+/**
+* Modifies given queues_pbit_map to parsable format
+* e.g: Modifes "0b00000101" to "10100000"
+*
+* @param queues_pbit_map PBIT MAP configured for each GEM in TECH PROFILE
+* @param size Queue count
+*
+* @return string queues_pbit_map
+*/
+std::string* get_valid_queues_pbit_map(std::string *queues_pbit_map, uint32_t size) {
+ for(uint32_t i=0; i < size; i++) {
+ /* Deletes 2 characters from index number 0 */
+ queues_pbit_map[i].erase(0, 2);
+ std::reverse(queues_pbit_map[i].begin(), queues_pbit_map[i].end());
+ }
+ return queues_pbit_map;
+}
+
+/**
+* Creates TM QUEUE MAPPING PROFILE for given queues_pbit_map and queues_priority_q
+*
+* @param queues_pbit_map PBIT MAP configured for each GEM in TECH PROFILE
+* @param queues_priority_q PRIORITY_Q configured for each GEM in TECH PROFILE
+* @param size Queue count
+*
+* @return <vector> TM QUEUE MAPPING PROFILE
+*/
+std::vector<uint32_t> get_tmq_map_profile(std::string *queues_pbit_map, uint32_t *queues_priority_q, uint32_t size) {
+ std::vector<uint32_t> tmq_map_profile(8,0);
+
+ for(uint32_t i=0; i < size; i++) {
+ for (uint32_t j = 0; j < queues_pbit_map[i].size(); j++) {
+ if (queues_pbit_map[i][j]=='1') {
+ tmq_map_profile.at(j) = queue_id_list[queues_priority_q[i]];
+ }
+ }
+ }
+ return tmq_map_profile;
+}
+
+/**
+* Gets corresponding tm_qmp_id for a given tmq_map_profile
+*
+* @param <vector> TM QUEUE MAPPING PROFILE
+*
+* @return tm_qmp_id
+*/
+int get_tm_qmp_id(std::vector<uint32_t> tmq_map_profile) {
+ int tm_qmp_id = -1;
+
+ std::map<int, std::vector < uint32_t > >::const_iterator it = qmp_id_to_qmp_map.begin();
+ while(it != qmp_id_to_qmp_map.end()) {
+ if(check_tm_qmp_equality(tmq_map_profile, it->second)) {
+ tm_qmp_id = it->first;
+ break;
+ }
+ it++;
+ }
+ return tm_qmp_id;
+}
+
+/**
+* Updates sched_qmp_id_map with given sched_id, pon_intf_id, onu_id, uni_id, tm_qmp_id
+*
+* @param upstream/downstream sched_id
+* @param PON intf ID
+* @param onu_id ONU ID
+* @param uni_id UNI ID
+* @param tm_qmp_id TM QUEUE MAPPING PROFILE ID
+*/
+void update_sched_qmp_id_map(uint32_t sched_id,uint32_t pon_intf_id, uint32_t onu_id, \
+ uint32_t uni_id, int tm_qmp_id) {
+ bcmos_fastlock_lock(&data_lock);
+ sched_qmp_id_map_key_tuple key(sched_id, pon_intf_id, onu_id, uni_id);
+ sched_qmp_id_map.insert(make_pair(key, tm_qmp_id));
+ bcmos_fastlock_unlock(&data_lock, 0);
+}
+
+/**
+* Gets corresponding tm_qmp_id for a given sched_id, pon_intf_id, onu_id, uni_id
+*
+* @param upstream/downstream sched_id
+* @param PON intf ID
+* @param onu_id ONU ID
+* @param uni_id UNI ID
+*
+* @return tm_qmp_id
+*/
+int get_tm_qmp_id(uint32_t sched_id,uint32_t pon_intf_id, uint32_t onu_id, uint32_t uni_id) {
+ sched_qmp_id_map_key_tuple key(sched_id, pon_intf_id, onu_id, uni_id);
+ int tm_qmp_id = -1;
+
+ std::map<sched_qmp_id_map_key_tuple, int>::const_iterator it = sched_qmp_id_map.find(key);
+ if (it != sched_qmp_id_map.end()) {
+ tm_qmp_id = it->second;
+ }
+ return tm_qmp_id;
+}
+
+/**
+* Gets a unique tm_qmp_id for a given tmq_map_profile
+* The tm_qmp_id is locally cached in a map, so that it can be rendered when necessary.
+* VOLTHA replays whole configuration on OLT reboot, so caching locally is not a problem
+*
+* @param upstream/downstream sched_id
+* @param PON intf ID
+* @param onu_id ONU ID
+* @param uni_id UNI ID
+* @param <vector> TM QUEUE MAPPING PROFILE
+*
+* @return tm_qmp_id
+*/
+int get_tm_qmp_id(uint32_t sched_id,uint32_t pon_intf_id, uint32_t onu_id, uint32_t uni_id, \
+ std::vector<uint32_t> tmq_map_profile) {
+ int tm_qmp_id;
+
+ bcmos_fastlock_lock(&data_lock);
+ /* Complexity of O(n). Is there better way that can avoid linear search? */
+ for (tm_qmp_id = 0; tm_qmp_id < MAX_TM_QMP_ID; tm_qmp_id++) {
+ if (tm_qmp_bitset[tm_qmp_id] == 0) {
+ tm_qmp_bitset[tm_qmp_id] = 1;
+ break;
+ }
+ }
+ bcmos_fastlock_unlock(&data_lock, 0);
+
+ if (tm_qmp_id < MAX_TM_QMP_ID) {
+ bcmos_fastlock_lock(&data_lock);
+ qmp_id_to_qmp_map.insert(make_pair(tm_qmp_id, tmq_map_profile));
+ bcmos_fastlock_unlock(&data_lock, 0);
+ update_sched_qmp_id_map(sched_id, pon_intf_id, onu_id, uni_id, tm_qmp_id);
+ return tm_qmp_id;
+ } else {
+ return -1;
+ }
+}
+
+/**
+* Free tm_qmp_id for a given sched_id, pon_intf_id, onu_id, uni_id
+*
+* @param upstream/downstream sched_id
+* @param PON intf ID
+* @param onu_id ONU ID
+* @param uni_id UNI ID
+* @param tm_qmp_id TM QUEUE MAPPING PROFILE ID
+*
+* @return boolean, true if no more reference for TM QMP else false
+*/
+bool free_tm_qmp_id(uint32_t sched_id,uint32_t pon_intf_id, uint32_t onu_id, \
+ uint32_t uni_id, int tm_qmp_id) {
+ bool result;
+ sched_qmp_id_map_key_tuple key(sched_id, pon_intf_id, onu_id, uni_id);
+ std::map<sched_qmp_id_map_key_tuple, int>::const_iterator it = sched_qmp_id_map.find(key);
+ bcmos_fastlock_lock(&data_lock);
+ if (it != sched_qmp_id_map.end()) {
+ sched_qmp_id_map.erase(it);
+ }
+ bcmos_fastlock_unlock(&data_lock, 0);
+
+ uint32_t tm_qmp_ref_count = 0;
+ std::map<sched_qmp_id_map_key_tuple, int>::const_iterator it2 = sched_qmp_id_map.begin();
+ while(it2 != sched_qmp_id_map.end()) {
+ if(it2->second == tm_qmp_id) {
+ tm_qmp_ref_count++;
+ }
+ it2++;
+ }
+
+ if (tm_qmp_ref_count == 0) {
+ std::map<int, std::vector < uint32_t > >::const_iterator it3 = qmp_id_to_qmp_map.find(tm_qmp_id);
+ if (it3 != qmp_id_to_qmp_map.end()) {
+ bcmos_fastlock_lock(&data_lock);
+ tm_qmp_bitset[tm_qmp_id] = 0;
+ qmp_id_to_qmp_map.erase(it3);
+ bcmos_fastlock_unlock(&data_lock, 0);
+ OPENOLT_LOG(INFO, openolt_log_id, "Reference count for tm qmp profile id %d is : %d. So clearing it\n", \
+ tm_qmp_id, tm_qmp_ref_count);
+ result = true;
+ }
+ } else {
+ OPENOLT_LOG(INFO, openolt_log_id, "Reference count for tm qmp profile id %d is : %d. So not clearing it\n", \
+ tm_qmp_id, tm_qmp_ref_count);
+ result = false;
+ }
+ return result;
+}
+
+/**
+* Returns Scheduler/Queue direction as string
+*
+* @param direction as specified in tech_profile.proto
+*/
+std::string GetDirection(int direction) {
+ switch (direction)
+ {
+ case tech_profile::Direction::UPSTREAM: return upstream;
+ case tech_profile::Direction::DOWNSTREAM: return downstream;
+ default: OPENOLT_LOG(ERROR, openolt_log_id, "direction-not-supported %d\n", direction);
+ return "direction-not-supported";
+ }
+}
+
+inline const char *get_flow_acton_command(uint32_t command) {
+ char actions[200] = { };
+ char *s_actions_ptr = actions;
+ if (command & BCMOLT_ACTION_CMD_ID_ADD_OUTER_TAG) strcat(s_actions_ptr, "ADD_OUTER_TAG|");
+ if (command & BCMOLT_ACTION_CMD_ID_REMOVE_OUTER_TAG) strcat(s_actions_ptr, "REMOVE_OUTER_TAG|");
+ if (command & BCMOLT_ACTION_CMD_ID_XLATE_OUTER_TAG) strcat(s_actions_ptr, "TRANSLATE_OUTER_TAG|");
+ if (command & BCMOLT_ACTION_CMD_ID_ADD_INNER_TAG) strcat(s_actions_ptr, "ADD_INNTER_TAG|");
+ if (command & BCMOLT_ACTION_CMD_ID_REMOVE_INNER_TAG) strcat(s_actions_ptr, "REMOVE_INNER_TAG|");
+ if (command & BCMOLT_ACTION_CMD_ID_XLATE_INNER_TAG) strcat(s_actions_ptr, "TRANSLATE_INNER_TAG|");
+ if (command & BCMOLT_ACTION_CMD_ID_REMARK_OUTER_PBITS) strcat(s_actions_ptr, "REMOVE_OUTER_PBITS|");
+ if (command & BCMOLT_ACTION_CMD_ID_REMARK_INNER_PBITS) strcat(s_actions_ptr, "REMAKE_INNER_PBITS|");
+ return s_actions_ptr;
+}
+
+char* openolt_read_sysinfo(const char* field_name, char* field_val)
{
FILE *fp;
/* Prepare the command*/
@@ -310,13 +504,16 @@
fp = popen(command, "r");
if (fp == NULL) {
/*The client has to check for a Null field value in this case*/
- BCM_LOG(INFO, openolt_log_id, "Failed to query the %s\n", field_name);
+ OPENOLT_LOG(INFO, openolt_log_id, "Failed to query the %s\n", field_name);
return field_val;
}
/*Read the field value*/
if (fp) {
- fread(field_val, OPENOLT_FIELD_LEN, 1, fp);
+ uint8_t ret;
+ ret = fread(field_val, OPENOLT_FIELD_LEN, 1, fp);
+ if (ret >= OPENOLT_FIELD_LEN)
+ OPENOLT_LOG(INFO, openolt_log_id, "Read data length %u\n", ret);
pclose(fp);
}
return field_val;
@@ -333,18 +530,18 @@
char serial_number[OPENOLT_FIELD_LEN];
memset(serial_number, '\0', OPENOLT_FIELD_LEN);
openolt_read_sysinfo("Serial Number", serial_number);
- BCM_LOG(INFO, openolt_log_id, "Fetched device serial number %s\n", serial_number);
+ OPENOLT_LOG(INFO, openolt_log_id, "Fetched device serial number %s\n", serial_number);
device_info->set_device_serial_number(serial_number);
char device_id[OPENOLT_FIELD_LEN];
memset(device_id, '\0', OPENOLT_FIELD_LEN);
openolt_read_sysinfo("MAC", device_id);
- BCM_LOG(INFO, openolt_log_id, "Fetched device mac address %s\n", device_id);
+ OPENOLT_LOG(INFO, openolt_log_id, "Fetched device mac address %s\n", device_id);
device_info->set_device_id(device_id);
// Legacy, device-wide ranges. To be deprecated when adapter
// is upgraded to support per-interface ranges
- if (board_technology == "xgspon") {
+ if (board_technology == "XGS-PON") {
device_info->set_onu_id_start(1);
device_info->set_onu_id_end(255);
device_info->set_alloc_id_start(MIN_ALLOC_ID_XGSPON);
@@ -354,7 +551,7 @@
device_info->set_flow_id_start(1);
device_info->set_flow_id_end(16383);
}
- else if (board_technology == "gpon") {
+ else if (board_technology == "GPON") {
device_info->set_onu_id_start(1);
device_info->set_onu_id_end(127);
device_info->set_alloc_id_start(MIN_ALLOC_ID_GPON);
@@ -374,7 +571,7 @@
ranges[intf_technology] = range;
range->set_technology(intf_technology);
- if (intf_technology == "xgspon") {
+ if (intf_technology == "XGS-PON") {
openolt::DeviceInfo::DeviceResourceRanges::Pool* pool;
pool = range->add_pools();
@@ -401,7 +598,7 @@
pool->set_start(1);
pool->set_end(16383);
}
- else if (intf_technology == "gpon") {
+ else if (intf_technology == "GPON") {
openolt::DeviceInfo::DeviceResourceRanges::Pool* pool;
pool = range->add_pools();
@@ -445,39 +642,199 @@
return Status::OK;
}
+Status pushOltOperInd(uint32_t intf_id, const char *type, const char *state)
+{
+ openolt::Indication ind;
+ openolt::IntfOperIndication* intf_oper_ind = new openolt::IntfOperIndication;
+
+ intf_oper_ind->set_type(type);
+ intf_oper_ind->set_intf_id(intf_id);
+ intf_oper_ind->set_oper_state(state);
+ ind.set_allocated_intf_oper_ind(intf_oper_ind);
+ oltIndQ.push(ind);
+ return Status::OK;
+}
+
+#define CLI_HOST_PROMPT_FORMAT "BCM.%u> "
+
+/* Build CLI prompt */
+static void openolt_cli_get_prompt_cb(bcmcli_session *session, char *buf, uint32_t max_len)
+{
+ snprintf(buf, max_len, CLI_HOST_PROMPT_FORMAT, dev_id);
+}
+
+static int _bal_apiend_cli_thread_handler(long data)
+{
+ char init_string[]="\n";
+ bcmcli_session *sess = current_session;
+ bcmos_task_parm bal_cli_task_p_dummy;
+
+ /* Switch to interactive mode if not stopped in the init script */
+ if (!bcmcli_is_stopped(sess))
+ {
+ /* Force a CLI command prompt
+ * The string passed into the parse function
+ * must be modifiable, so a string constant like
+ * bcmcli_parse(current_session, "\n") will not
+ * work.
+ */
+ bcmcli_parse(sess, init_string);
+
+ /* Process user input until EOF or quit command */
+ bcmcli_driver(sess);
+ };
+ OPENOLT_LOG(INFO, openolt_log_id, "BAL API End CLI terminated\n");
+
+ /* Cleanup */
+ bcmcli_session_close(current_session);
+ bcmcli_token_destroy(NULL);
+ return 0;
+}
+
+/* Init API CLI commands for the current device */
+bcmos_errno bcm_openolt_api_cli_init(bcmcli_entry *parent_dir, bcmcli_session *session)
+{
+ bcmos_errno rc;
+
+ api_parent_dir = parent_dir;
+
+ rc = bcm_api_cli_set_commands(session);
+
+#ifdef BCM_SUBSYSTEM_HOST
+ /* Subscribe for device change indication */
+ rc = rc ? rc : bcmolt_olt_sel_ind_register(_api_cli_olt_change_ind);
+#endif
+
+ return rc;
+}
+
+static bcmos_errno bcm_cli_quit(bcmcli_session *session, const bcmcli_cmd_parm parm[], uint16_t n_parms)
+{
+ bcmcli_stop(session);
+ bcmcli_session_print(session, "CLI terminated by 'Quit' command\n");
+ status_bcm_cli_quit = BCMOS_TRUE;
+
+ return BCM_ERR_OK;
+}
+
+int get_status_bcm_cli_quit(void) {
+ return status_bcm_cli_quit;
+}
+
+bcmos_errno bcmolt_apiend_cli_init() {
+ bcmos_errno ret;
+ bcmos_task_parm bal_cli_task_p = {};
+ bcmos_task_parm bal_cli_task_p_dummy;
+
+ /** before creating the task, check if it is already created by the other half of BAL i.e. Core side */
+ if (BCM_ERR_OK != bcmos_task_query(&bal_cli_thread, &bal_cli_task_p_dummy))
+ {
+ /* Create BAL CLI thread */
+ bal_cli_task_p.name = bal_cli_thread_name;
+ bal_cli_task_p.handler = _bal_apiend_cli_thread_handler;
+ bal_cli_task_p.priority = TASK_PRIORITY_CLI;
+
+ ret = bcmos_task_create(&bal_cli_thread, &bal_cli_task_p);
+ if (BCM_ERR_OK != ret)
+ {
+ bcmos_printf("Couldn't create BAL API end CLI thread\n");
+ return ret;
+ }
+ }
+}
+
Status Enable_(int argc, char *argv[]) {
- bcmbal_access_terminal_cfg acc_term_obj;
- bcmbal_access_terminal_key key = { };
+ bcmos_errno err;
+ bcmolt_host_init_parms init_parms = {};
+ init_parms.transport.type = BCM_HOST_API_CONN_LOCAL;
+ unsigned int failed_enable_device_cnt = 0;
if (!state.is_activated()) {
vendor_init();
- bcmbal_init(argc, argv, NULL);
+ /* Initialize host subsystem */
+ err = bcmolt_host_init(&init_parms);
+ if (BCM_ERR_OK != err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to init OLT\n");
+ return bcm_to_grpc_err(err, "Failed to init OLT");
+ }
+
+ bcmcli_session_parm mon_session_parm;
+ /* Create CLI session */
+ memset(&mon_session_parm, 0, sizeof(mon_session_parm));
+ mon_session_parm.get_prompt = openolt_cli_get_prompt_cb;
+ mon_session_parm.access_right = BCMCLI_ACCESS_ADMIN;
+ bcmos_errno rc = bcmcli_session_open(&mon_session_parm, ¤t_session);
+ BUG_ON(rc != BCM_ERR_OK);
+
+ /* API CLI */
+ bcm_openolt_api_cli_init(NULL, current_session);
+
+ /* Add quit command */
+ BCMCLI_MAKE_CMD_NOPARM(NULL, "quit", "Quit", bcm_cli_quit);
+
+ err = bcmolt_apiend_cli_init();
+ if (BCM_ERR_OK != err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to add apiend init\n");
+ return bcm_to_grpc_err(err, "Failed to add apiend init");
+ }
+
bcmos_fastlock_init(&data_lock, 0);
+ OPENOLT_LOG(INFO, openolt_log_id, "Enable OLT - %s-%s\n", VENDOR_ID, MODEL_ID);
- BCM_LOG(INFO, openolt_log_id, "Enable OLT - %s-%s\n", VENDOR_ID, MODEL_ID);
-
- Status status = SubscribeIndication();
- if (!status.ok()) {
- BCM_LOG(ERROR, openolt_log_id, "SubscribeIndication failed - %s : %s\n",
- grpc_status_code_to_string(status.error_code()).c_str(),
- status.error_message().c_str());
-
- return status;
+ if (bcmolt_api_conn_mgr_is_connected(dev_id))
+ {
+ Status status = SubscribeIndication();
+ if (!status.ok()) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "SubscribeIndication failed - %s : %s\n",
+ grpc_status_code_to_string(status.error_code()).c_str(),
+ status.error_message().c_str());
+ return status;
+ }
+ bcmos_errno err;
+ bcmolt_odid dev;
+ OPENOLT_LOG(INFO, openolt_log_id, "Enabling PON %d Devices ... \n", BCM_MAX_DEVS_PER_LINE_CARD);
+ for (dev = 0; dev < BCM_MAX_DEVS_PER_LINE_CARD; dev++) {
+ bcmolt_device_cfg dev_cfg = { };
+ bcmolt_device_key dev_key = { };
+ dev_key.device_id = dev;
+ BCMOLT_CFG_INIT(&dev_cfg, device, dev_key);
+ BCMOLT_MSG_FIELD_GET(&dev_cfg, system_mode);
+ err = bcmolt_cfg_get(dev_id, &dev_cfg.hdr);
+ if (err == BCM_ERR_NOT_CONNECTED) {
+ bcmolt_device_key key = {.device_id = dev};
+ bcmolt_device_connect oper;
+ BCMOLT_OPER_INIT(&oper, device, connect, key);
+ if (MODEL_ID == "asfvolt16") {
+ BCMOLT_MSG_FIELD_SET(&oper, inni_config.mode, BCMOLT_INNI_MODE_ALL_10_G_XFI);
+ BCMOLT_MSG_FIELD_SET (&oper, system_mode, BCMOLT_SYSTEM_MODE_XGS__2_X);
+ } else if (MODEL_ID == "asgvolt64") {
+ BCMOLT_MSG_FIELD_SET(&oper, inni_config.mode, BCMOLT_INNI_MODE_ALL_10_G_XFI);
+ BCMOLT_MSG_FIELD_SET(&oper, inni_config.mux, BCMOLT_INNI_MUX_FOUR_TO_ONE);
+ BCMOLT_MSG_FIELD_SET (&oper, system_mode, BCMOLT_SYSTEM_MODE_GPON__16_X);
+ }
+ err = bcmolt_oper_submit(dev_id, &oper.hdr);
+ if (err) {
+ failed_enable_device_cnt ++;
+ OPENOLT_LOG(ERROR, openolt_log_id, "Enable PON device %d failed, err %d\n", dev, err);
+ if (failed_enable_device_cnt == BCM_MAX_DEVS_PER_LINE_CARD) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "failed to enable all the pon ports\n");
+ return Status(grpc::StatusCode::INTERNAL, "Failed to activate all PON ports");
+ }
+ }
+ bcmos_usleep(200000);
+ }
+ else {
+ OPENOLT_LOG(WARNING, openolt_log_id, "PON deivce %d already connected\n", dev);
+ state.activate();
+ }
+ }
+ init_stats();
}
-
- key.access_term_id = DEFAULT_ATERM_ID;
- BCMBAL_CFG_INIT(&acc_term_obj, access_terminal, key);
- BCMBAL_CFG_PROP_SET(&acc_term_obj, access_terminal, admin_state, BCMBAL_STATE_UP);
- bcmos_errno err = bcmbal_cfg_set(DEFAULT_ATERM_ID, &(acc_term_obj.hdr));
- if (err) {
- BCM_LOG(ERROR, openolt_log_id, "Failed to enable OLT\n");
- return bcm_to_grpc_err(err, "Failed to enable OLT");
- }
-
- init_stats();
}
+ /* Start CLI */
+ OPENOLT_LOG(INFO, def_log_id, "Starting CLI\n");
//If already enabled, generate an extra indication ????
return Status::OK;
}
@@ -502,168 +859,457 @@
//This fails with Operation Not Supported, bug ???
//TEMPORARY WORK AROUND
- Status status = DisableUplinkIf_(nni_intf_id);
+ Status status = SetStateUplinkIf_(nni_intf_id, false);
if (status.ok()) {
state.deactivate();
- openolt::Indication ind;
- openolt::OltIndication* olt_ind = new openolt::OltIndication;
- olt_ind->set_oper_state("down");
- ind.set_allocated_olt_ind(olt_ind);
- BCM_LOG(INFO, openolt_log_id, "Disable OLT, add an extra indication\n");
- oltIndQ.push(ind);
+ OPENOLT_LOG(INFO, openolt_log_id, "Disable OLT, add an extra indication\n");
+ pushOltOperInd(nni_intf_id, "nni", "up");
}
return status;
}
Status Reenable_() {
- Status status = EnableUplinkIf_(0);
+ Status status = SetStateUplinkIf_(0, true);
if (status.ok()) {
state.activate();
- openolt::Indication ind;
- openolt::OltIndication* olt_ind = new openolt::OltIndication;
- olt_ind->set_oper_state("up");
- ind.set_allocated_olt_ind(olt_ind);
- BCM_LOG(INFO, openolt_log_id, "Reenable OLT, add an extra indication\n");
- oltIndQ.push(ind);
+ OPENOLT_LOG(INFO, openolt_log_id, "Reenable OLT, add an extra indication\n");
+ pushOltOperInd(0, "nni", "up");
}
return status;
}
-Status EnablePonIf_(uint32_t intf_id) {
- bcmbal_interface_cfg interface_obj;
- bcmbal_interface_key interface_key;
+bcmos_errno get_pon_interface_status(bcmolt_interface pon_ni, bcmolt_interface_state *state) {
+ bcmos_errno err;
+ bcmolt_pon_interface_key pon_key;
+ bcmolt_pon_interface_cfg pon_cfg;
+ pon_key.pon_ni = pon_ni;
- interface_key.intf_id = intf_id;
- interface_key.intf_type = BCMBAL_INTF_TYPE_PON;
-
- BCMBAL_CFG_INIT(&interface_obj, interface, interface_key);
-
- BCMBAL_CFG_PROP_GET(&interface_obj, interface, admin_state);
- bcmos_errno err = bcmbal_cfg_get(DEFAULT_ATERM_ID, &(interface_obj.hdr));
- if (err == BCM_ERR_OK && interface_obj.data.admin_state == BCMBAL_STATE_UP) {
- BCM_LOG(DEBUG, openolt_log_id, "PON interface: %d already enabled\n", intf_id);
- return Status::OK;
- }
-
- BCMBAL_CFG_PROP_SET(&interface_obj, interface, admin_state, BCMBAL_STATE_UP);
-
- err = bcmbal_cfg_set(DEFAULT_ATERM_ID, &(interface_obj.hdr));
- if (err) {
- BCM_LOG(ERROR, openolt_log_id, "Failed to enable PON interface: %d\n", intf_id);
- return bcm_to_grpc_err(err, "Failed to enable PON interface");
- }
-
- return Status::OK;
+ BCMOLT_CFG_INIT(&pon_cfg, pon_interface, pon_key);
+ BCMOLT_FIELD_SET_PRESENT(&pon_cfg.data, pon_interface_cfg_data, state);
+ BCMOLT_FIELD_SET_PRESENT(&pon_cfg.data, pon_interface_cfg_data, itu);
+ err = bcmolt_cfg_get(dev_id, &pon_cfg.hdr);
+ *state = pon_cfg.data.state;
+ return err;
}
-Status DisableUplinkIf_(uint32_t intf_id) {
- bcmbal_interface_cfg interface_obj;
- bcmbal_interface_key interface_key;
+inline uint64_t get_flow_status(uint16_t flow_id, uint16_t flow_type, uint16_t data_id) {
+ bcmos_errno err;
+ bcmolt_flow_key flow_key;
+ bcmolt_flow_cfg flow_cfg;
- interface_key.intf_id = intf_id;
- interface_key.intf_type = BCMBAL_INTF_TYPE_NNI;
+ flow_key.flow_id = flow_id;
+ flow_key.flow_type = (bcmolt_flow_type)flow_type;
- BCMBAL_CFG_INIT(&interface_obj, interface, interface_key);
- BCMBAL_CFG_PROP_SET(&interface_obj, interface, admin_state, BCMBAL_STATE_DOWN);
+ BCMOLT_CFG_INIT(&flow_cfg, flow, flow_key);
- bcmos_errno err = bcmbal_cfg_set(DEFAULT_ATERM_ID, &(interface_obj.hdr));
- if (err) {
- BCM_LOG(ERROR, openolt_log_id, "Failed to disable Uplink interface: %d\n", intf_id);
- return bcm_to_grpc_err(err, "Failed to disable Uplink interface");
+ switch (data_id) {
+ case ONU_ID: //onu_id
+ BCMOLT_FIELD_SET_PRESENT(&flow_cfg.data, flow_cfg_data, onu_id);
+ err = bcmolt_cfg_get(dev_id, &flow_cfg.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to get onu_id\n");
+ return err;
+ }
+ return flow_cfg.data.onu_id;
+ case FLOW_TYPE:
+ err = bcmolt_cfg_get(dev_id, &flow_cfg.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to get flow_type\n");
+ return err;
+ }
+ return flow_cfg.key.flow_type;
+ case SVC_PORT_ID: //svc_port_id
+ BCMOLT_FIELD_SET_PRESENT(&flow_cfg.data, flow_cfg_data, svc_port_id);
+ err = bcmolt_cfg_get(dev_id, &flow_cfg.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to get svc_port_id\n");
+ return err;
+ }
+ return flow_cfg.data.svc_port_id;
+ case PRIORITY:
+ BCMOLT_FIELD_SET_PRESENT(&flow_cfg.data, flow_cfg_data, priority);
+ err = bcmolt_cfg_get(dev_id, &flow_cfg.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to get priority\n");
+ return err;
+ }
+ return flow_cfg.data.priority;
+ case COOKIE: //cookie
+ BCMOLT_FIELD_SET_PRESENT(&flow_cfg.data, flow_cfg_data, cookie);
+ err = bcmolt_cfg_get(dev_id, &flow_cfg.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to get cookie\n");
+ return err;
+ }
+ return flow_cfg.data.cookie;
+ case INGRESS_INTF_TYPE: //ingress intf_type
+ BCMOLT_FIELD_SET_PRESENT(&flow_cfg.data, flow_cfg_data, ingress_intf);
+ err = bcmolt_cfg_get(dev_id, &flow_cfg.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to get ingress intf_type\n");
+ return err;
+ }
+ return flow_cfg.data.ingress_intf.intf_type;
+ case EGRESS_INTF_TYPE: //egress intf_type
+ BCMOLT_FIELD_SET_PRESENT(&flow_cfg.data, flow_cfg_data, egress_intf);
+ err = bcmolt_cfg_get(dev_id, &flow_cfg.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to get egress intf_type\n");
+ return err;
+ }
+ return flow_cfg.data.egress_intf.intf_type;
+ case INGRESS_INTF_ID: //ingress intf_id
+ BCMOLT_FIELD_SET_PRESENT(&flow_cfg.data, flow_cfg_data, ingress_intf);
+ err = bcmolt_cfg_get(dev_id, &flow_cfg.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to get ingress intf_id\n");
+ return err;
+ }
+ return flow_cfg.data.ingress_intf.intf_id;
+ case EGRESS_INTF_ID: //egress intf_id
+ BCMOLT_FIELD_SET_PRESENT(&flow_cfg.data, flow_cfg_data, egress_intf);
+ err = bcmolt_cfg_get(dev_id, &flow_cfg.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to get egress intf_id\n");
+ return err;
+ }
+ return flow_cfg.data.egress_intf.intf_id;
+ case CLASSIFIER_O_VID:
+ BCMOLT_FIELD_SET_PRESENT(&flow_cfg.data, flow_cfg_data, classifier);
+ err = bcmolt_cfg_get(dev_id, &flow_cfg.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to get classifier o_vid\n");
+ return err;
+ }
+ return flow_cfg.data.classifier.o_vid;
+ case CLASSIFIER_O_PBITS:
+ BCMOLT_FIELD_SET_PRESENT(&flow_cfg.data, flow_cfg_data, classifier);
+ err = bcmolt_cfg_get(dev_id, &flow_cfg.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to get classifier o_pbits\n");
+ return err;
+ }
+ return flow_cfg.data.classifier.o_pbits;
+ case CLASSIFIER_I_VID:
+ BCMOLT_FIELD_SET_PRESENT(&flow_cfg.data, flow_cfg_data, classifier);
+ err = bcmolt_cfg_get(dev_id, &flow_cfg.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to get classifier i_vid\n");
+ return err;
+ }
+ return flow_cfg.data.classifier.i_vid;
+ case CLASSIFIER_I_PBITS:
+ BCMOLT_FIELD_SET_PRESENT(&flow_cfg.data, flow_cfg_data, classifier);
+ err = bcmolt_cfg_get(dev_id, &flow_cfg.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to get classifier i_pbits\n");
+ return err;
+ }
+ return flow_cfg.data.classifier.i_pbits;
+ case CLASSIFIER_ETHER_TYPE:
+ BCMOLT_FIELD_SET_PRESENT(&flow_cfg.data, flow_cfg_data, classifier);
+ err = bcmolt_cfg_get(dev_id, &flow_cfg.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to get classifier ether_type\n");
+ return err;
+ }
+ return flow_cfg.data.classifier.ether_type;
+ case CLASSIFIER_IP_PROTO:
+ BCMOLT_FIELD_SET_PRESENT(&flow_cfg.data, flow_cfg_data, classifier);
+ err = bcmolt_cfg_get(dev_id, &flow_cfg.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to get classifier ip_proto\n");
+ return err;
+ }
+ return flow_cfg.data.classifier.ip_proto;
+ case CLASSIFIER_SRC_PORT:
+ BCMOLT_FIELD_SET_PRESENT(&flow_cfg.data, flow_cfg_data, classifier);
+ err = bcmolt_cfg_get(dev_id, &flow_cfg.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to get classifier src_port\n");
+ return err;
+ }
+ return flow_cfg.data.classifier.src_port;
+ case CLASSIFIER_DST_PORT:
+ BCMOLT_FIELD_SET_PRESENT(&flow_cfg.data, flow_cfg_data, classifier);
+ err = bcmolt_cfg_get(dev_id, &flow_cfg.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to get classifier dst_port\n");
+ return err;
+ }
+ return flow_cfg.data.classifier.dst_port;
+ case CLASSIFIER_PKT_TAG_TYPE:
+ BCMOLT_FIELD_SET_PRESENT(&flow_cfg.data, flow_cfg_data, classifier);
+ err = bcmolt_cfg_get(dev_id, &flow_cfg.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to get classifier pkt_tag_type\n");
+ return err;
+ }
+ return flow_cfg.data.classifier.pkt_tag_type;
+ case EGRESS_QOS_TYPE:
+ BCMOLT_FIELD_SET_PRESENT(&flow_cfg.data, flow_cfg_data, egress_qos);
+ err = bcmolt_cfg_get(dev_id, &flow_cfg.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to get egress_qos type\n");
+ return err;
+ }
+ return flow_cfg.data.egress_qos.type;
+ case EGRESS_QOS_QUEUE_ID:
+ BCMOLT_FIELD_SET_PRESENT(&flow_cfg.data, flow_cfg_data, egress_qos);
+ err = bcmolt_cfg_get(dev_id, &flow_cfg.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to get egress_qos queue_id\n");
+ return err;
+ }
+ switch (flow_cfg.data.egress_qos.type) {
+ case BCMOLT_EGRESS_QOS_TYPE_FIXED_QUEUE:
+ return flow_cfg.data.egress_qos.u.fixed_queue.queue_id;
+ case BCMOLT_EGRESS_QOS_TYPE_TC_TO_QUEUE:
+ return flow_cfg.data.egress_qos.u.tc_to_queue.tc_to_queue_id;
+ case BCMOLT_EGRESS_QOS_TYPE_PBIT_TO_TC:
+ return flow_cfg.data.egress_qos.u.pbit_to_tc.tc_to_queue_id;
+ case BCMOLT_EGRESS_QOS_TYPE_PRIORITY_TO_QUEUE:
+ return flow_cfg.data.egress_qos.u.priority_to_queue.tm_q_set_id;
+ case BCMOLT_EGRESS_QOS_TYPE_NONE:
+ default:
+ return -1;
+ }
+ case EGRESS_QOS_TM_SCHED_ID:
+ BCMOLT_FIELD_SET_PRESENT(&flow_cfg.data, flow_cfg_data, egress_qos);
+ err = bcmolt_cfg_get(dev_id, &flow_cfg.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to get egress_qos tm_sched_id\n");
+ return err;
+ }
+ return flow_cfg.data.egress_qos.tm_sched.id;
+ case ACTION_CMDS_BITMASK:
+ BCMOLT_FIELD_SET_PRESENT(&flow_cfg.data, flow_cfg_data, action);
+ err = bcmolt_cfg_get(dev_id, &flow_cfg.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to get action cmds_bitmask\n");
+ return err;
+ }
+ return flow_cfg.data.action.cmds_bitmask;
+ case ACTION_O_VID:
+ BCMOLT_FIELD_SET_PRESENT(&flow_cfg.data, flow_cfg_data, action);
+ err = bcmolt_cfg_get(dev_id, &flow_cfg.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to get action o_vid\n");
+ return err;
+ }
+ return flow_cfg.data.action.o_vid;
+ case ACTION_O_PBITS:
+ BCMOLT_FIELD_SET_PRESENT(&flow_cfg.data, flow_cfg_data, action);
+ err = bcmolt_cfg_get(dev_id, &flow_cfg.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to get action o_pbits\n");
+ return err;
+ }
+ return flow_cfg.data.action.o_pbits;
+ case ACTION_I_VID:
+ BCMOLT_FIELD_SET_PRESENT(&flow_cfg.data, flow_cfg_data, action);
+ err = bcmolt_cfg_get(dev_id, &flow_cfg.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to get action i_vid\n");
+ return err;
+ }
+ return flow_cfg.data.action.i_vid;
+ case ACTION_I_PBITS:
+ BCMOLT_FIELD_SET_PRESENT(&flow_cfg.data, flow_cfg_data, action);
+ err = bcmolt_cfg_get(dev_id, &flow_cfg.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to get action i_pbits\n");
+ return err;
+ }
+ return flow_cfg.data.action.i_pbits;
+ case STATE:
+ BCMOLT_FIELD_SET_PRESENT(&flow_cfg.data, flow_cfg_data, state);
+ err = bcmolt_cfg_get(dev_id, &flow_cfg.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to get state\n");
+ return err;
+ }
+ return flow_cfg.data.state;
+ default:
+ return BCM_ERR_INTERNAL;
+ }
+
+ return err;
+}
+
+Status EnablePonIf_(uint32_t intf_id) {
+ bcmos_errno err = BCM_ERR_OK;
+ bcmolt_pon_interface_cfg interface_obj;
+ bcmolt_pon_interface_key intf_key = {.pon_ni = (bcmolt_interface)intf_id};
+ bcmolt_pon_interface_set_pon_interface_state pon_interface_set_state;
+ bcmolt_interface_state state;
+
+ err = get_pon_interface_status((bcmolt_interface)intf_id, &state);
+ if (err == BCM_ERR_OK) {
+ if (state == BCMOLT_INTERFACE_STATE_ACTIVE_WORKING) {
+ OPENOLT_LOG(INFO, openolt_log_id, "PON interface: %d already enabled\n", intf_id);
+ return Status::OK;
+ }
+ }
+ BCMOLT_CFG_INIT(&interface_obj, pon_interface, intf_key);
+ BCMOLT_OPER_INIT(&pon_interface_set_state, pon_interface, set_pon_interface_state, intf_key);
+ BCMOLT_MSG_FIELD_SET(&interface_obj, discovery.control, BCMOLT_CONTROL_STATE_ENABLE);
+ BCMOLT_MSG_FIELD_SET(&interface_obj, discovery.interval, 5000);
+ BCMOLT_MSG_FIELD_SET(&interface_obj, discovery.onu_post_discovery_mode,
+ BCMOLT_ONU_POST_DISCOVERY_MODE_ACTIVATE);
+ BCMOLT_MSG_FIELD_SET(&interface_obj, itu.automatic_onu_deactivation.los, true);
+ BCMOLT_MSG_FIELD_SET(&interface_obj, itu.automatic_onu_deactivation.onu_alarms, true);
+ BCMOLT_MSG_FIELD_SET(&interface_obj, itu.automatic_onu_deactivation.tiwi, true);
+ BCMOLT_MSG_FIELD_SET(&interface_obj, itu.automatic_onu_deactivation.ack_timeout, true);
+ BCMOLT_MSG_FIELD_SET(&interface_obj, itu.automatic_onu_deactivation.sfi, true);
+ BCMOLT_MSG_FIELD_SET(&interface_obj, itu.automatic_onu_deactivation.loki, true);
+ BCMOLT_FIELD_SET(&pon_interface_set_state.data, pon_interface_set_pon_interface_state_data,
+ operation, BCMOLT_INTERFACE_OPERATION_ACTIVE_WORKING);
+
+ err = bcmolt_cfg_set(dev_id, &interface_obj.hdr);
+ if (err != BCM_ERR_OK) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to enable discovery onu, PON interface %d, err %d\n", intf_id, err);
+ return bcm_to_grpc_err(err, "Failed to enable discovery onu");
+ }
+ err = bcmolt_oper_submit(dev_id, &pon_interface_set_state.hdr);
+ if (err != BCM_ERR_OK) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to enable PON interface: %d\n", intf_id);
+ return bcm_to_grpc_err(err, "Failed to enable PON interface");
+ }
+ else {
+ OPENOLT_LOG(INFO, openolt_log_id, "Successfully enabled PON interface: %d\n", intf_id);
+ OPENOLT_LOG(INFO, openolt_log_id, "Initializing tm sched creation for PON interface: %d\n", intf_id);
+ CreateDefaultSched(intf_id, downstream);
+ CreateDefaultQueue(intf_id, downstream);
}
return Status::OK;
}
Status ProbeDeviceCapabilities_() {
- bcmbal_access_terminal_cfg acc_term_obj;
- bcmbal_access_terminal_key key = { };
+ bcmos_errno err;
+ bcmolt_device_cfg dev_cfg = { };
+ bcmolt_device_key dev_key = { };
+ bcmolt_olt_cfg olt_cfg = { };
+ bcmolt_olt_key olt_key = { };
+ bcmolt_topology_map topo_map[BCM_MAX_PONS_PER_OLT] = { };
+ bcmolt_topology topo = { };
- key.access_term_id = DEFAULT_ATERM_ID;
- BCMBAL_CFG_INIT(&acc_term_obj, access_terminal, key);
- BCMBAL_CFG_PROP_GET(&acc_term_obj, access_terminal, admin_state);
- BCMBAL_CFG_PROP_GET(&acc_term_obj, access_terminal, oper_status);
- BCMBAL_CFG_PROP_GET(&acc_term_obj, access_terminal, topology);
- BCMBAL_CFG_PROP_GET(&acc_term_obj, access_terminal, sw_version);
- BCMBAL_CFG_PROP_GET(&acc_term_obj, access_terminal, conn_id);
- bcmos_errno err = bcmbal_cfg_get(DEFAULT_ATERM_ID, &(acc_term_obj.hdr));
- if (err) {
- BCM_LOG(ERROR, openolt_log_id, "Failed to query OLT\n");
- return bcm_to_grpc_err(err, "Failed to query OLT");
+ topo.topology_maps.len = BCM_MAX_PONS_PER_OLT;
+ topo.topology_maps.arr = &topo_map[0];
+ BCMOLT_CFG_INIT(&olt_cfg, olt, olt_key);
+ BCMOLT_MSG_FIELD_GET(&olt_cfg, bal_state);
+ BCMOLT_FIELD_SET_PRESENT(&olt_cfg.data, olt_cfg_data, topology);
+ BCMOLT_CFG_LIST_BUF_SET(&olt_cfg, olt, topo.topology_maps.arr,
+ sizeof(bcmolt_topology_map) * topo.topology_maps.len);
+ err = bcmolt_cfg_get(dev_id, &olt_cfg.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "cfg: Failed to query OLT\n");
+ return bcm_to_grpc_err(err, "cfg: Failed to query OLT");
}
- BCM_LOG(INFO, openolt_log_id, "OLT capabilitites, admin_state: %s oper_state: %s\n",
- acc_term_obj.data.admin_state == BCMBAL_STATE_UP ? "up" : "down",
- acc_term_obj.data.oper_status == BCMBAL_STATUS_UP ? "up" : "down");
+ num_of_nni_ports = olt_cfg.data.topology.num_switch_ports;
+ num_of_pon_ports = olt_cfg.data.topology.topology_maps.len;
- std::string bal_version;
- bal_version += std::to_string(acc_term_obj.data.sw_version.major_rev)
- + "." + std::to_string(acc_term_obj.data.sw_version.minor_rev)
- + "." + std::to_string(acc_term_obj.data.sw_version.release_rev);
- firmware_version = "BAL." + bal_version + "__" + firmware_version;
+ OPENOLT_LOG(INFO, openolt_log_id, "OLT capabilitites, oper_state: %s\n",
+ olt_cfg.data.bal_state == BCMOLT_BAL_STATE_BAL_AND_SWITCH_READY
+ ? "up" : "down");
- BCM_LOG(INFO, openolt_log_id, "--------------- version %s object model: %d\n", bal_version.c_str(),
- acc_term_obj.data.sw_version.om_version);
+ OPENOLT_LOG(INFO, openolt_log_id, "topology nni: %d pon: %d dev: %d\n",
+ num_of_nni_ports,
+ num_of_pon_ports,
+ BCM_MAX_DEVS_PER_LINE_CARD);
- BCM_LOG(INFO, openolt_log_id, "--------------- topology nni:%d pon:%d dev:%d ppd:%d family: %d:%d\n",
- acc_term_obj.data.topology.num_of_nni_ports,
- acc_term_obj.data.topology.num_of_pon_ports,
- acc_term_obj.data.topology.num_of_mac_devs,
- acc_term_obj.data.topology.num_of_pons_per_mac_dev,
- acc_term_obj.data.topology.pon_family,
- acc_term_obj.data.topology.pon_sub_family
- );
+ for (int devid = 0; devid < BCM_MAX_DEVS_PER_LINE_CARD; devid++) {
+ dev_key.device_id = devid;
+ BCMOLT_CFG_INIT(&dev_cfg, device, dev_key);
+ BCMOLT_MSG_FIELD_GET(&dev_cfg, firmware_sw_version);
+ BCMOLT_MSG_FIELD_GET(&dev_cfg, chip_family);
+ BCMOLT_MSG_FIELD_GET(&dev_cfg, system_mode);
+ err = bcmolt_cfg_get(dev_id, &dev_cfg.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "device: Failed to query OLT\n");
+ return bcm_to_grpc_err(err, "device: Failed to query OLT");
+ }
- switch(acc_term_obj.data.topology.pon_sub_family)
- {
- case BCMBAL_PON_SUB_FAMILY_GPON: board_technology = "gpon"; break;
- case BCMBAL_PON_SUB_FAMILY_XGS: board_technology = "xgspon"; break;
+ std::string bal_version;
+ bal_version += std::to_string(dev_cfg.data.firmware_sw_version.major)
+ + "." + std::to_string(dev_cfg.data.firmware_sw_version.minor)
+ + "." + std::to_string(dev_cfg.data.firmware_sw_version.revision);
+ firmware_version = "BAL." + bal_version + "__" + firmware_version;
+
+ switch(dev_cfg.data.system_mode) {
+ case 10: board_technology = "GPON"; FILL_ARRAY(intf_technologies,devid*4,(devid+1)*4,"GPON"); break;
+ case 11: board_technology = "GPON"; FILL_ARRAY(intf_technologies,devid*8,(devid+1)*8,"GPON"); break;
+ case 12: board_technology = "GPON"; FILL_ARRAY(intf_technologies,devid*16,(devid+1)*16,"GPON"); break;
+ case 13: board_technology = "XGPON"; FILL_ARRAY(intf_technologies,devid*2,(devid+1)*2,"XGPON"); break;
+ case 14: board_technology = "XGPON"; FILL_ARRAY(intf_technologies,devid*4,(devid+1)*4,"XGPON"); break;
+ case 15: board_technology = "XGPON"; FILL_ARRAY(intf_technologies,devid*8,(devid+1)*8,"XGPON"); break;
+ case 16: board_technology = "XGPON"; FILL_ARRAY(intf_technologies,devid*16,(devid+1)*16,"XGPON"); break;
+ case 18: board_technology = "XGS-PON"; FILL_ARRAY(intf_technologies,devid*2,(devid+1)*2,"XGS-PON"); break;
+ case 19: board_technology = "XGS-PON"; FILL_ARRAY(intf_technologies,devid*16,(devid+1)*16,"XGS-PON"); break;
+ case 20: board_technology = MIXED_TECH; FILL_ARRAY(intf_technologies,devid*2,(devid+1)*2,MIXED_TECH); break;
+ }
+
+ switch(dev_cfg.data.chip_family) {
+ case BCMOLT_CHIP_FAMILY_CHIP_FAMILY_6862_X_: chip_family = "Maple"; break;
+ case BCMOLT_CHIP_FAMILY_CHIP_FAMILY_6865_X_: chip_family = "Aspen"; break;
+ }
+
+ OPENOLT_LOG(INFO, openolt_log_id, "device %d, pon: %d, version %s object model: %d, family: %s, board_technology: %s\n",
+ devid, BCM_MAX_PONS_PER_DEV, bal_version.c_str(), BAL_API_VERSION, chip_family.c_str(), board_technology.c_str());
+
+ bcmos_usleep(500000);
}
- num_of_nni_ports = acc_term_obj.data.topology.num_of_nni_ports;
- num_of_pon_ports = acc_term_obj.data.topology.num_of_pon_ports;
-
- BCM_LOG(INFO, openolt_log_id, "PON num_intfs: %d global board_technology: %s\n", num_of_pon_ports, board_technology.c_str());
-
return Status::OK;
}
-
+#if 0
Status ProbePonIfTechnology_() {
// Probe maximum extent possible as configured into BAL driver to determine
// which are active in the current BAL topology. And for those
// that are active, determine each port's access technology, i.e. "gpon" or "xgspon".
for (uint32_t intf_id = 0; intf_id < num_of_pon_ports; ++intf_id) {
- bcmbal_interface_cfg interface_obj;
- bcmbal_interface_key interface_key;
+ bcmolt_pon_interface_cfg interface_obj;
+ bcmolt_pon_interface_key interface_key;
- interface_key.intf_id = intf_id;
- interface_key.intf_type = BCMBAL_INTF_TYPE_PON;
+ interface_key.pon_ni = intf_id;
+ BCMOLT_CFG_INIT(&interface_obj, pon_interface, interface_key);
+ if (board_technology == "XGS-PON")
+ BCMOLT_MSG_FIELD_GET(&interface_obj, xgs_ngpon2_trx);
+ else if (board_technology == "GPON")
+ BCMOLT_MSG_FIELD_GET(&interface_obj, gpon_trx);
- BCMBAL_CFG_INIT(&interface_obj, interface, interface_key);
- BCMBAL_CFG_PROP_GET(&interface_obj, interface, admin_state);
- BCMBAL_CFG_PROP_GET(&interface_obj, interface, transceiver_type);
-
- bcmos_errno err = bcmbal_cfg_get(DEFAULT_ATERM_ID, &(interface_obj.hdr));
+ bcmos_errno err = bcmolt_cfg_get(dev_id, &interface_obj.hdr);
if (err != BCM_ERR_OK) {
intf_technologies[intf_id] = UNKNOWN_TECH;
- if(err != BCM_ERR_RANGE) BCM_LOG(ERROR, openolt_log_id, "Failed to get PON config: %d\n", intf_id);
+ if(err != BCM_ERR_RANGE) OPENOLT_LOG(ERROR, openolt_log_id, "Failed to get PON config: %d err %d\n", intf_id, err);
}
else {
- switch(interface_obj.data.transceiver_type) {
- case BCMBAL_TRX_TYPE_GPON_SPS_43_48:
- case BCMBAL_TRX_TYPE_GPON_SPS_SOG_4321:
- case BCMBAL_TRX_TYPE_GPON_LTE_3680_M:
- case BCMBAL_TRX_TYPE_GPON_SOURCE_PHOTONICS:
- case BCMBAL_TRX_TYPE_GPON_LTE_3680_P:
- intf_technologies[intf_id] = "gpon";
- break;
- default:
- intf_technologies[intf_id] = "xgspon";
- break;
+ if (board_technology == "XGS-PON") {
+ switch(interface_obj.data.xgpon_trx.transceiver_type) {
+ case BCMOLT_XGPON_TRX_TYPE_LTH_7222_PC:
+ case BCMOLT_XGPON_TRX_TYPE_WTD_RTXM266_702:
+ case BCMOLT_XGPON_TRX_TYPE_LTH_7222_BC_PLUS:
+ case BCMOLT_XGPON_TRX_TYPE_LTH_7226_PC:
+ case BCMOLT_XGPON_TRX_TYPE_LTH_5302_PC:
+ case BCMOLT_XGPON_TRX_TYPE_LTH_7226_A_PC_PLUS:
+ case BCMOLT_XGPON_TRX_TYPE_D272RR_SSCB_DM:
+ intf_technologies[intf_id] = "XGS-PON";
+ break;
+ }
+ } else if (board_technology == "GPON") {
+ switch(interface_obj.data.gpon_trx.transceiver_type) {
+ case BCMOLT_TRX_TYPE_SPS_43_48_H_HP_CDE_SD_2013:
+ case BCMOLT_TRX_TYPE_LTE_3680_M:
+ case BCMOLT_TRX_TYPE_SOURCE_PHOTONICS:
+ case BCMOLT_TRX_TYPE_LTE_3680_P_TYPE_C_PLUS:
+ case BCMOLT_TRX_TYPE_LTE_3680_P_BC:
+ intf_technologies[intf_id] = "GPON";
+ break;
+ }
}
- BCM_LOG(INFO, openolt_log_id, "PON intf_id: %d intf_technologies: %d:%s\n", intf_id,
- interface_obj.data.transceiver_type, intf_technologies[intf_id].c_str());
if (board_technology != UNKNOWN_TECH) {
board_technology = intf_technologies[intf_id];
@@ -673,53 +1319,81 @@
}
}
-
return Status::OK;
}
-
+#endif
unsigned NumNniIf_() {return num_of_nni_ports;}
unsigned NumPonIf_() {return num_of_pon_ports;}
-Status EnableUplinkIf_(uint32_t intf_id) {
- bcmbal_interface_cfg interface_obj;
- bcmbal_interface_key interface_key;
+bcmos_errno get_nni_interface_status(bcmolt_interface id, bcmolt_interface_state *state) {
+ bcmos_errno err;
+ bcmolt_nni_interface_key nni_key;
+ bcmolt_nni_interface_cfg nni_cfg;
+ nni_key.id = id;
- interface_key.intf_id = intf_id;
- interface_key.intf_type = BCMBAL_INTF_TYPE_NNI;
+ BCMOLT_CFG_INIT(&nni_cfg, nni_interface, nni_key);
+ BCMOLT_FIELD_SET_PRESENT(&nni_cfg.data, nni_interface_cfg_data, state);
+ err = bcmolt_cfg_get(dev_id, &nni_cfg.hdr);
+ *state = nni_cfg.data.state;
+ return err;
+}
- BCMBAL_CFG_INIT(&interface_obj, interface, interface_key);
+Status SetStateUplinkIf_(uint32_t intf_id, bool set_state) {
+ bcmos_errno err = BCM_ERR_OK;
+ bcmolt_nni_interface_key intf_key = {.id = (bcmolt_interface)intf_id};
+ bcmolt_nni_interface_set_nni_state nni_interface_set_state;
+ bcmolt_interface_state state;
- BCMBAL_CFG_PROP_GET(&interface_obj, interface, admin_state);
- bcmos_errno err = bcmbal_cfg_get(DEFAULT_ATERM_ID, &(interface_obj.hdr));
- if (err == BCM_ERR_OK && interface_obj.data.admin_state == BCMBAL_STATE_UP) {
- BCM_LOG(DEBUG, openolt_log_id, "Uplink interface: %d already enabled\n", intf_id);
- return Status::OK;
+ err = get_nni_interface_status((bcmolt_interface)intf_id, &state);
+ if (err == BCM_ERR_OK) {
+ if (set_state && state == BCMOLT_INTERFACE_STATE_ACTIVE_WORKING) {
+ OPENOLT_LOG(INFO, openolt_log_id, "NNI interface: %d already enabled\n", intf_id);
+ OPENOLT_LOG(INFO, openolt_log_id, "Initializing tm sched creation for NNI interface: %d\n", intf_id);
+ CreateDefaultSched(intf_id, upstream);
+ CreateDefaultQueue(intf_id, upstream);
+ return Status::OK;
+ } else if (!set_state && state == BCMOLT_INTERFACE_STATE_INACTIVE) {
+ OPENOLT_LOG(INFO, openolt_log_id, "NNI interface: %d already disabled\n", intf_id);
+ return Status::OK;
+ }
}
- BCMBAL_CFG_PROP_SET(&interface_obj, interface, admin_state, BCMBAL_STATE_UP);
-
- err = bcmbal_cfg_set(DEFAULT_ATERM_ID, &(interface_obj.hdr));
- if (err) {
- BCM_LOG(ERROR, openolt_log_id, "Failed to enable Uplink interface: %d\n", intf_id);
- return bcm_to_grpc_err(err, "Failed to enable Uplink interface");
+ BCMOLT_OPER_INIT(&nni_interface_set_state, nni_interface, set_nni_state, intf_key);
+ if (set_state) {
+ BCMOLT_FIELD_SET(&nni_interface_set_state.data, nni_interface_set_nni_state_data,
+ nni_state, BCMOLT_INTERFACE_OPERATION_ACTIVE_WORKING);
+ } else {
+ BCMOLT_FIELD_SET(&nni_interface_set_state.data, nni_interface_set_nni_state_data,
+ nni_state, BCMOLT_INTERFACE_OPERATION_INACTIVE);
+ }
+ err = bcmolt_oper_submit(dev_id, &nni_interface_set_state.hdr);
+ if (err != BCM_ERR_OK) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to %s NNI interface: %d, err %d\n",
+ (set_state)?"enable":"disable", intf_id, err);
+ return bcm_to_grpc_err(err, "Failed to enable NNI interface");
+ }
+ else {
+ OPENOLT_LOG(INFO, openolt_log_id, "Successfully %s NNI interface: %d\n", (set_state)?"enable":"disable", intf_id);
+ if (set_state) {
+ OPENOLT_LOG(INFO, openolt_log_id, "Initializing tm sched creation for NNI interface: %d\n", intf_id);
+ CreateDefaultSched(intf_id, upstream);
+ CreateDefaultQueue(intf_id, upstream);
+ }
}
return Status::OK;
}
Status DisablePonIf_(uint32_t intf_id) {
- bcmbal_interface_cfg interface_obj;
- bcmbal_interface_key interface_key;
+ bcmolt_pon_interface_cfg interface_obj;
+ bcmolt_pon_interface_key interface_key;
- interface_key.intf_id = intf_id;
- interface_key.intf_type = BCMBAL_INTF_TYPE_PON;
-
- BCMBAL_CFG_INIT(&interface_obj, interface, interface_key);
- BCMBAL_CFG_PROP_SET(&interface_obj, interface, admin_state, BCMBAL_STATE_DOWN);
-
- bcmos_errno err = bcmbal_cfg_set(DEFAULT_ATERM_ID, &(interface_obj.hdr));
+ interface_key.pon_ni = intf_id;
+ BCMOLT_CFG_INIT(&interface_obj, pon_interface, interface_key);
+ BCMOLT_MSG_FIELD_GET(&interface_obj, state);
+ bcmos_errno err = bcmolt_cfg_get(dev_id, &interface_obj.hdr);
if (err) {
- BCM_LOG(ERROR, openolt_log_id, "Failed to disable PON interface: %d\n", intf_id);
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to disable PON interface: %d\n", intf_id);
return bcm_to_grpc_err(err, "Failed to disable PON interface");
}
@@ -728,60 +1402,78 @@
Status ActivateOnu_(uint32_t intf_id, uint32_t onu_id,
const char *vendor_id, const char *vendor_specific, uint32_t pir) {
+ bcmos_errno err = BCM_ERR_OK;
+ bcmolt_onu_cfg onu_cfg;
+ bcmolt_onu_key onu_key;
+ bcmolt_serial_number serial_number; /**< ONU serial number */
+ bcmolt_bin_str_36 registration_id; /**< ONU registration ID */
- bcmbal_subscriber_terminal_cfg sub_term_obj = {};
- bcmbal_subscriber_terminal_key subs_terminal_key;
- bcmbal_serial_number serial_num = {};
- bcmbal_registration_id registration_id = {};
-
- BCM_LOG(INFO, openolt_log_id, "Enabling ONU %d on PON %d : vendor id %s, vendor specific %s, pir %d\n",
- onu_id, intf_id, vendor_id, vendor_specific_to_str(vendor_specific).c_str(), pir);
-
- subs_terminal_key.sub_term_id = onu_id;
- subs_terminal_key.intf_id = intf_id;
- BCMBAL_CFG_INIT(&sub_term_obj, subscriber_terminal, subs_terminal_key);
-
- memcpy(serial_num.vendor_id, vendor_id, 4);
- memcpy(serial_num.vendor_specific, vendor_specific, 4);
- BCMBAL_CFG_PROP_SET(&sub_term_obj, subscriber_terminal, serial_number, serial_num);
-
-#if 0
- // Commenting out as this is causing issues with onu activation
- // with BAL 2.6 (Broadcom CS5248819).
-
- // FIXME - Use a default (all zeros) registration id.
- memset(registration_id.arr, 0, sizeof(registration_id.arr));
- BCMBAL_CFG_PROP_SET(&sub_term_obj, subscriber_terminal, registration_id, registration_id);
-#endif
-
- BCMBAL_CFG_PROP_SET(&sub_term_obj, subscriber_terminal, admin_state, BCMBAL_STATE_UP);
-
- bcmos_errno err = bcmbal_cfg_set(DEFAULT_ATERM_ID, &(sub_term_obj.hdr));
- if (err) {
- BCM_LOG(ERROR, openolt_log_id, "Failed to enable ONU %d on PON %d\n", onu_id, intf_id);
- return bcm_to_grpc_err(err, "Failed to enable ONU");
+ onu_key.onu_id = onu_id;
+ onu_key.pon_ni = intf_id;
+ BCMOLT_CFG_INIT(&onu_cfg, onu, onu_key);
+ BCMOLT_FIELD_SET_PRESENT(&onu_cfg.data, onu_cfg_data, onu_state);
+ err = bcmolt_cfg_get(dev_id, &onu_cfg.hdr);
+ if (err == BCM_ERR_OK) {
+ if ((onu_cfg.data.onu_state == BCMOLT_ONU_STATE_PROCESSING ||
+ onu_cfg.data.onu_state == BCMOLT_ONU_STATE_ACTIVE) ||
+ (onu_cfg.data.onu_state == BCMOLT_ONU_STATE_INACTIVE &&
+ onu_cfg.data.onu_old_state == BCMOLT_ONU_STATE_NOT_CONFIGURED))
+ return Status::OK;
}
+
+ OPENOLT_LOG(INFO, openolt_log_id, "Enabling ONU %d on PON %d : vendor id %s, \
+vendor specific %s, pir %d\n", onu_id, intf_id, vendor_id,
+ vendor_specific_to_str(vendor_specific).c_str(), pir);
+
+ memcpy(serial_number.vendor_id.arr, vendor_id, 4);
+ memcpy(serial_number.vendor_specific.arr, vendor_specific, 4);
+ BCMOLT_CFG_INIT(&onu_cfg, onu, onu_key);
+ BCMOLT_MSG_FIELD_SET(&onu_cfg, itu.serial_number, serial_number);
+ BCMOLT_MSG_FIELD_SET(&onu_cfg, itu.auto_learning, BCMOS_TRUE);
+ /*set burst and data profiles to fec disabled*/
+ if (board_technology == "XGS-PON") {
+ BCMOLT_MSG_FIELD_SET(&onu_cfg, itu.xgpon.ranging_burst_profile, 2);
+ BCMOLT_MSG_FIELD_SET(&onu_cfg, itu.xgpon.data_burst_profile, 1);
+ } else if (board_technology == "GPON") {
+ BCMOLT_MSG_FIELD_SET(&onu_cfg, itu.gpon.ds_ber_reporting_interval, 1000000);
+ BCMOLT_MSG_FIELD_SET(&onu_cfg, itu.gpon.omci_port_id, onu_id);
+ }
+ err = bcmolt_cfg_set(dev_id, &onu_cfg.hdr);
+ if (err != BCM_ERR_OK) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to set activate ONU %d on PON %d, err %d\n", onu_id, intf_id, err);
+ return bcm_to_grpc_err(err, "Failed to activate ONU");
+ }
+
return Status::OK;
}
Status DeactivateOnu_(uint32_t intf_id, uint32_t onu_id,
const char *vendor_id, const char *vendor_specific) {
+ bcmos_errno err = BCM_ERR_OK;
+ bcmolt_onu_set_onu_state onu_oper; /* declare main API struct */
+ bcmolt_onu_cfg onu_cfg;
+ bcmolt_onu_key onu_key; /**< Object key. */
+ bcmolt_onu_state onu_state;
- bcmbal_subscriber_terminal_cfg sub_term_obj = {};
- bcmbal_subscriber_terminal_key subs_terminal_key;
-
- BCM_LOG(INFO, openolt_log_id, "Deactivating ONU %d on PON %d : vendor id %s, vendor specific %s\n",
- onu_id, intf_id, vendor_id, vendor_specific_to_str(vendor_specific).c_str());
-
- subs_terminal_key.sub_term_id = onu_id;
- subs_terminal_key.intf_id = intf_id;
- BCMBAL_CFG_INIT(&sub_term_obj, subscriber_terminal, subs_terminal_key);
-
- BCMBAL_CFG_PROP_SET(&sub_term_obj, subscriber_terminal, admin_state, BCMBAL_STATE_DOWN);
-
- if (bcmbal_cfg_set(DEFAULT_ATERM_ID, &(sub_term_obj.hdr))) {
- BCM_LOG(ERROR, openolt_log_id, "Failed to deactivate ONU %d on PON %d\n", onu_id, intf_id);
- return Status(grpc::StatusCode::INTERNAL, "Failed to deactivate ONU");
+ onu_key.onu_id = onu_id;
+ onu_key.pon_ni = intf_id;
+ BCMOLT_CFG_INIT(&onu_cfg, onu, onu_key);
+ BCMOLT_FIELD_SET_PRESENT(&onu_cfg.data, onu_cfg_data, onu_state);
+ err = bcmolt_cfg_get(dev_id, &onu_cfg.hdr);
+ if (err == BCM_ERR_OK) {
+ switch (onu_state) {
+ case BCMOLT_ONU_OPERATION_ACTIVE:
+ BCMOLT_OPER_INIT(&onu_oper, onu, set_onu_state, onu_key);
+ BCMOLT_FIELD_SET(&onu_oper.data, onu_set_onu_state_data,
+ onu_state, BCMOLT_ONU_OPERATION_INACTIVE);
+ err = bcmolt_oper_submit(dev_id, &onu_oper.hdr);
+ if (err != BCM_ERR_OK) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to \
+deactivate ONU %d on PON %d, err %d\n", onu_id, intf_id, err);
+ return bcm_to_grpc_err(err, "Failed to deactivate ONU");
+ }
+ break;
+ }
}
return Status::OK;
@@ -790,7 +1482,7 @@
Status DeleteOnu_(uint32_t intf_id, uint32_t onu_id,
const char *vendor_id, const char *vendor_specific) {
- BCM_LOG(INFO, openolt_log_id, "DeleteOnu ONU %d on PON %d : vendor id %s, vendor specific %s\n",
+ OPENOLT_LOG(INFO, openolt_log_id, "DeleteOnu ONU %d on PON %d : vendor id %s, vendor specific %s\n",
onu_id, intf_id, vendor_id, vendor_specific_to_str(vendor_specific).c_str());
// Need to deactivate before removing it (BAL rules)
@@ -803,48 +1495,40 @@
// TODO: Delete the schedulers and queues.
- bcmos_errno err = BCM_ERR_OK;
- bcmbal_subscriber_terminal_cfg cfg;
- bcmbal_subscriber_terminal_key key = { };
+ bcmolt_onu_cfg cfg_obj;
+ bcmolt_onu_key key;
- BCM_LOG(INFO, openolt_log_id, "Processing subscriber terminal cfg clear for sub_term_id %d and intf_id %d\n",
+ OPENOLT_LOG(INFO, openolt_log_id, "Processing subscriber terminal cfg clear for sub_term_id %d and intf_id %d\n",
onu_id, intf_id);
- key.sub_term_id = onu_id ;
- key.intf_id = intf_id ;
+ key.onu_id = onu_id;
+ key.pon_ni = intf_id;
+ BCMOLT_CFG_INIT(&cfg_obj, onu, key);
- if (0 == key.sub_term_id)
- {
- BCM_LOG(INFO, openolt_log_id,"Invalid Key to handle subscriber terminal clear subscriber_terminal_id %d, \
- Interface ID %d\n", onu_id, intf_id);
- return Status(grpc::StatusCode::INTERNAL, "Failed to delete ONU");
- }
-
- BCMBAL_CFG_INIT(&cfg, subscriber_terminal, key);
-
- err = bcmbal_cfg_clear(DEFAULT_ATERM_ID, &cfg.hdr);
+ bcmos_errno err = bcmolt_cfg_clear(dev_id, &cfg_obj.hdr);
if (err != BCM_ERR_OK)
{
- BCM_LOG(ERROR, openolt_log_id, "Failed to clear information for BAL subscriber_terminal_id %d, Interface ID %d\n",
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to clear information for BAL subscriber_terminal_id %d, Interface ID %d\n",
onu_id, intf_id);
return Status(grpc::StatusCode::INTERNAL, "Failed to delete ONU");
}
- return Status::OK;;
+ return Status::OK;
}
#define MAX_CHAR_LENGTH 20
#define MAX_OMCI_MSG_LENGTH 44
Status OmciMsgOut_(uint32_t intf_id, uint32_t onu_id, const std::string pkt) {
- bcmbal_u8_list_u32_max_2048 buf; /* A structure with a msg pointer and length value */
- bcmos_errno err = BCM_ERR_OK;
+ bcmolt_bin_str buf = {};
+ bcmolt_onu_cpu_packets omci_cpu_packets;
+ bcmolt_onu_key key;
- /* The destination of the OMCI packet is a registered ONU on the OLT PON interface */
- bcmbal_dest proxy_pkt_dest;
+ key.pon_ni = intf_id;
+ key.onu_id = onu_id;
- proxy_pkt_dest.type = BCMBAL_DEST_TYPE_ITU_OMCI_CHANNEL;
- proxy_pkt_dest.u.itu_omci_channel.sub_term_id = onu_id;
- proxy_pkt_dest.u.itu_omci_channel.intf_id = intf_id;
+ BCMOLT_OPER_INIT(&omci_cpu_packets, onu, cpu_packets, key);
+ BCMOLT_MSG_FIELD_SET(&omci_cpu_packets, packet_type, BCMOLT_PACKET_TYPE_OMCI);
+ BCMOLT_MSG_FIELD_SET(&omci_cpu_packets, calc_crc, BCMOS_TRUE);
// ???
if ((pkt.size()/2) > MAX_OMCI_MSG_LENGTH) {
@@ -868,27 +1552,32 @@
arraySend[idx2] = strtol(str1, NULL, 16);
}
- buf.val = (uint8_t *)malloc((buf.len)*sizeof(uint8_t));
- memcpy(buf.val, (uint8_t *)arraySend, buf.len);
+ buf.arr = (uint8_t *)malloc((buf.len)*sizeof(uint8_t));
+ memcpy(buf.arr, (uint8_t *)arraySend, buf.len);
- err = bcmbal_pkt_send(0, proxy_pkt_dest, (const char *)(buf.val), buf.len);
+ BCMOLT_MSG_FIELD_SET(&omci_cpu_packets, number_of_packets, 1);
+ BCMOLT_MSG_FIELD_SET(&omci_cpu_packets, packet_size, buf.len);
+ BCMOLT_MSG_FIELD_SET(&omci_cpu_packets, buffer, buf);
+ bcmos_errno err = bcmolt_oper_submit(dev_id, &omci_cpu_packets.hdr);
if (err) {
- BCM_LOG(ERROR, omci_log_id, "Error sending OMCI message to ONU %d on PON %d\n", onu_id, intf_id);
+ OPENOLT_LOG(ERROR, omci_log_id, "Error sending OMCI message to ONU %d on PON %d\n", onu_id, intf_id);
+ return bcm_to_grpc_err(err, "send OMCI failed");
} else {
- BCM_LOG(DEBUG, omci_log_id, "OMCI request msg of length %d sent to ONU %d on PON %d : %s\n",
+ OPENOLT_LOG(DEBUG, omci_log_id, "OMCI request msg of length %d sent to ONU %d on PON %d : %s\n",
buf.len, onu_id, intf_id, pkt.c_str());
}
-
- free(buf.val);
+ free(buf.arr);
return Status::OK;
}
Status OnuPacketOut_(uint32_t intf_id, uint32_t onu_id, uint32_t port_no, uint32_t gemport_id, const std::string pkt) {
- bcmos_errno err = BCM_ERR_OK;
- bcmbal_dest proxy_pkt_dest;
- bcmbal_u8_list_u32_max_2048 buf;
+ bcmolt_pon_interface_cpu_packets pon_interface_cpu_packets; /**< declare main API struct */
+ bcmolt_pon_interface_key key = {.pon_ni = (bcmolt_interface)intf_id}; /**< declare key */
+ bcmolt_bin_str buf = {};
+ bcmolt_gem_port_id gem_port_id_array[1];
+ bcmolt_gem_port_id_list_u8_max_16 gem_port_list = {};
if (port_no > 0) {
bool found = false;
@@ -908,63 +1597,99 @@
bcmos_fastlock_unlock(&data_lock, 0);
if (!found) {
- BCM_LOG(ERROR, openolt_log_id, "Packet out failed to find destination for ONU %d port_no %u on PON %d\n",
+ OPENOLT_LOG(ERROR, openolt_log_id, "Packet out failed to find destination for ONU %d port_no %u on PON %d\n",
onu_id, port_no, intf_id);
return grpc::Status(grpc::StatusCode::NOT_FOUND, "no flow for port_no");
}
- BCM_LOG(INFO, openolt_log_id, "Gem port %u found for ONU %d port_no %u on PON %d\n",
+ OPENOLT_LOG(INFO, openolt_log_id, "Gem port %u found for ONU %d port_no %u on PON %d\n",
gemport_id, onu_id, port_no, intf_id);
}
- proxy_pkt_dest.type = BCMBAL_DEST_TYPE_SVC_PORT;
- proxy_pkt_dest.u.svc_port.svc_port_id = gemport_id;
- proxy_pkt_dest.u.svc_port.intf_id = intf_id;
- BCM_LOG(INFO, openolt_log_id, "Packet out of length %d sent to gemport %d on pon %d port_no %u\n",
- pkt.size(), gemport_id, intf_id, port_no);
+ gem_port_id_array[0] = gemport_id;
+ gem_port_list.len = 1;
+ gem_port_list.arr = gem_port_id_array;
+ buf.len = pkt.size();
+ buf.arr = (uint8_t *)malloc((buf.len)*sizeof(uint8_t));
+ memcpy(buf.arr, (uint8_t *)pkt.data(), buf.len);
+
+ /* init the API struct */
+ BCMOLT_OPER_INIT(&pon_interface_cpu_packets, pon_interface, cpu_packets, key);
+ BCMOLT_MSG_FIELD_SET(&pon_interface_cpu_packets, packet_type, BCMOLT_PACKET_TYPE_ETH);
+ BCMOLT_MSG_FIELD_SET(&pon_interface_cpu_packets, calc_crc, BCMOS_TRUE);
+ BCMOLT_MSG_FIELD_SET(&pon_interface_cpu_packets, gem_port_list, gem_port_list);
+ BCMOLT_MSG_FIELD_SET(&pon_interface_cpu_packets, buffer, buf);
+
+ OPENOLT_LOG(INFO, openolt_log_id, "Packet out of length %d sent to gemport %d on pon %d port_no %u\n",
+ (uint8_t)pkt.size(), gemport_id, intf_id, port_no);
+
+ /* call API */
+ bcmolt_oper_submit(dev_id, &pon_interface_cpu_packets.hdr);
}
else {
- proxy_pkt_dest.type = BCMBAL_DEST_TYPE_SUB_TERM,
- proxy_pkt_dest.u.sub_term.sub_term_id = onu_id;
- proxy_pkt_dest.u.sub_term.intf_id = intf_id;
- BCM_LOG(INFO, openolt_log_id, "Packet out of length %d sent to onu %d on pon %d\n",
- pkt.size(), onu_id, intf_id);
+ //TODO: Port No is 0, it is coming sender requirement.
+ OPENOLT_LOG(INFO, openolt_log_id, "port_no %d onu %d on pon %d\n",
+ port_no, onu_id, intf_id);
}
-
- buf.len = pkt.size();
- buf.val = (uint8_t *)malloc((buf.len)*sizeof(uint8_t));
- memcpy(buf.val, (uint8_t *)pkt.data(), buf.len);
-
- err = bcmbal_pkt_send(0, proxy_pkt_dest, (const char *)(buf.val), buf.len);
-
- free(buf.val);
+ free(buf.arr);
return Status::OK;
}
Status UplinkPacketOut_(uint32_t intf_id, const std::string pkt) {
- bcmos_errno err = BCM_ERR_OK;
- bcmbal_dest proxy_pkt_dest;
- bcmbal_u8_list_u32_max_2048 buf;
+ bcmolt_flow_key key = {}; /* declare key */
+ bcmolt_bin_str buffer = {};
+ bcmolt_flow_send_eth_packet oper; /* declare main API struct */
- proxy_pkt_dest.type = BCMBAL_DEST_TYPE_NNI,
- proxy_pkt_dest.u.nni.intf_id = intf_id;
+ // TODO: flow_id is currently not passed in UplinkPacket message from voltha.
+ bcmolt_flow_id flow_id = 0;
- buf.len = pkt.size();
- buf.val = (uint8_t *)malloc((buf.len)*sizeof(uint8_t));
- memcpy(buf.val, (uint8_t *)pkt.data(), buf.len);
+ //validate flow_id and find flow_id/flow type: upstream/ingress type: PON/egress type: NNI
+ if (get_flow_status(flow_id, BCMOLT_FLOW_TYPE_UPSTREAM, FLOW_TYPE) == BCMOLT_FLOW_TYPE_UPSTREAM && \
+ get_flow_status(flow_id, BCMOLT_FLOW_TYPE_UPSTREAM, INGRESS_INTF_TYPE) == BCMOLT_FLOW_INTERFACE_TYPE_PON && \
+ get_flow_status(flow_id, BCMOLT_FLOW_TYPE_UPSTREAM, EGRESS_INTF_TYPE) == BCMOLT_FLOW_INTERFACE_TYPE_NNI)
+ key.flow_id = flow_id;
+ else {
+ if (flow_id_counters != 0) {
+ for (int flowid=0; flowid < flow_id_counters; flowid++) {
+ int flow_index = flow_id_data[flowid][0];
+ if (get_flow_status(flow_index, BCMOLT_FLOW_TYPE_UPSTREAM, FLOW_TYPE) == BCMOLT_FLOW_TYPE_UPSTREAM && \
+ get_flow_status(flow_index, BCMOLT_FLOW_TYPE_UPSTREAM, INGRESS_INTF_TYPE) == BCMOLT_FLOW_INTERFACE_TYPE_PON && \
+ get_flow_status(flow_index, BCMOLT_FLOW_TYPE_UPSTREAM, EGRESS_INTF_TYPE) == BCMOLT_FLOW_INTERFACE_TYPE_NNI) {
+ key.flow_id = flow_index;
+ break;
+ }
+ }
+ }
+ else {
+ return grpc::Status(grpc::StatusCode::NOT_FOUND, "no flow id found");
+ }
+ }
- err = bcmbal_pkt_send(0, proxy_pkt_dest, (const char *)(buf.val), buf.len);
+ key.flow_type = BCMOLT_FLOW_TYPE_UPSTREAM; /* send from uplink direction */
- BCM_LOG(INFO, openolt_log_id, "Packet out of length %d sent through uplink port %d\n",
- buf.len, intf_id);
+ /* Initialize the API struct. */
+ BCMOLT_OPER_INIT(&oper, flow, send_eth_packet, key);
- free(buf.val);
+ buffer.len = pkt.size();
+ buffer.arr = (uint8_t *)malloc((buffer.len)*sizeof(uint8_t));
+ memcpy(buffer.arr, (uint8_t *)pkt.data(), buffer.len);
+ if (buffer.arr == NULL) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "allocate packet buffer failed\n");
+ return bcm_to_grpc_err(BCM_ERR_PARM, "allocate packet buffer failed");
+ }
+ BCMOLT_FIELD_SET(&oper.data, flow_send_eth_packet_data, buffer, buffer);
+
+ bcmos_errno err = bcmolt_oper_submit(dev_id, &oper.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Error sending packets via nni port %d, flow_id %d err %d\n", intf_id, key.flow_id, err);
+ } else {
+ OPENOLT_LOG(INFO, openolt_log_id, "sent packets to port %d in upstream direction, flow_id %d \n", intf_id, key.flow_id);
+ }
return Status::OK;
}
-uint32_t GetPortNum_(uint32_t flow_id)
-{
+uint32_t GetPortNum_(uint32_t flow_id) {
bcmos_fastlock_lock(&data_lock);
uint32_t port_no = 0;
std::map<uint32_t, uint32_t >::const_iterator it = flowid_to_port.find(flow_id);
@@ -975,52 +1700,150 @@
return port_no;
}
+#define FLOW_LOG(level,msg,err) \
+ do { \
+ OPENOLT_LOG(level, openolt_log_id, "--------> %s (flow_id %d) err: %d <--------\n", msg, key.flow_id, err); \
+ OPENOLT_LOG(level, openolt_log_id, "intf_id %d, onu_id %d, uni_id %d, port_no %u, cookie %"PRIu64"\n", \
+ access_intf_id, onu_id, uni_id, port_no, cookie); \
+ OPENOLT_LOG(level, openolt_log_id, "flow_type %s, queue_id %d, sched_id %d\n", flow_type.c_str(), \
+ cfg.data.egress_qos.u.fixed_queue.queue_id, cfg.data.egress_qos.tm_sched.id); \
+ OPENOLT_LOG(level, openolt_log_id, "Ingress(intfd_type %s, intf_id %d), Egress(intf_type %s, intf_id %d)\n", \
+ GET_FLOW_INTERFACE_TYPE(cfg.data.ingress_intf.intf_type), cfg.data.ingress_intf.intf_id, \
+ GET_FLOW_INTERFACE_TYPE(cfg.data.egress_intf.intf_type), cfg.data.egress_intf.intf_id); \
+ OPENOLT_LOG(level, openolt_log_id, "classifier(o_vid %d, o_pbits %d, i_vid %d, i_pbits %d, ether type 0x%x)\n", \
+ c_val.o_vid, c_val.o_pbits, c_val.i_vid, c_val.i_pbits, classifier.eth_type()); \
+ OPENOLT_LOG(level, openolt_log_id, "classifier(ip_proto 0x%x, gemport_id %d, src_port %d, dst_port %d, pkt_tag_type %s)\n", \
+ c_val.ip_proto, gemport_id, c_val.src_port, c_val.dst_port, GET_PKT_TAG_TYPE(c_val.pkt_tag_type)); \
+ OPENOLT_LOG(level, openolt_log_id, "action(cmds_bitmask %s, o_vid %d, o_pbits %d, i_vid %d, i_pbits %d)\n\n", \
+ get_flow_acton_command(a_val.cmds_bitmask), a_val.o_vid, a_val.o_pbits, a_val.i_vid, a_val.i_pbits); \
+ } while(0)
+
+#define FLOW_PARAM_LOG() \
+ do { \
+ OPENOLT_LOG(INFO, openolt_log_id, "--------> flow comparison (now before) <--------\n"); \
+ OPENOLT_LOG(INFO, openolt_log_id, "flow_id (%d %d)\n", \
+ key.flow_id, flow_index); \
+ OPENOLT_LOG(INFO, openolt_log_id, "onu_id (%d %lu)\n", \
+ cfg.data.onu_id , get_flow_status(flow_index, flow_id_data[flowid][1], ONU_ID)); \
+ OPENOLT_LOG(INFO, openolt_log_id, "type (%d %lu)\n", \
+ key.flow_type, get_flow_status(flow_index, flow_id_data[flowid][1], FLOW_TYPE)); \
+ OPENOLT_LOG(INFO, openolt_log_id, "svc_port_id (%d %lu)\n", \
+ cfg.data.svc_port_id, get_flow_status(flow_index, flow_id_data[flowid][1], SVC_PORT_ID)); \
+ OPENOLT_LOG(INFO, openolt_log_id, "priority (%d %lu)\n", \
+ cfg.data.priority, get_flow_status(flow_index, flow_id_data[flowid][1], PRIORITY)); \
+ OPENOLT_LOG(INFO, openolt_log_id, "cookie (%lu %lu)\n", \
+ cfg.data.cookie, get_flow_status(flow_index, flow_id_data[flowid][1], COOKIE)); \
+ OPENOLT_LOG(INFO, openolt_log_id, "ingress intf_type (%s %s)\n", \
+ GET_FLOW_INTERFACE_TYPE(cfg.data.ingress_intf.intf_type), \
+ GET_FLOW_INTERFACE_TYPE(get_flow_status(flow_index, flow_id_data[flowid][1], INGRESS_INTF_TYPE))); \
+ OPENOLT_LOG(INFO, openolt_log_id, "ingress intf id (%d %lu)\n", \
+ cfg.data.ingress_intf.intf_id , get_flow_status(flow_index, flow_id_data[flowid][1], INGRESS_INTF_ID)); \
+ OPENOLT_LOG(INFO, openolt_log_id, "egress intf_type (%d %lu)\n", \
+ cfg.data.egress_intf.intf_type , get_flow_status(flow_index, flow_id_data[flowid][1], EGRESS_INTF_TYPE)); \
+ OPENOLT_LOG(INFO, openolt_log_id, "egress intf_id (%d %lu)\n", \
+ cfg.data.egress_intf.intf_id , get_flow_status(flow_index, flow_id_data[flowid][1], EGRESS_INTF_ID)); \
+ OPENOLT_LOG(INFO, openolt_log_id, "classifier o_vid (%d %lu)\n", \
+ c_val.o_vid , get_flow_status(flow_index, flow_id_data[flowid][1], CLASSIFIER_O_VID)); \
+ OPENOLT_LOG(INFO, openolt_log_id, "classifier o_pbits (%d %lu)\n", \
+ c_val.o_pbits , get_flow_status(flow_index, flow_id_data[flowid][1], CLASSIFIER_O_PBITS)); \
+ OPENOLT_LOG(INFO, openolt_log_id, "classifier i_vid (%d %lu)\n", \
+ c_val.i_vid , get_flow_status(flow_index, flow_id_data[flowid][1], CLASSIFIER_I_VID)); \
+ OPENOLT_LOG(INFO, openolt_log_id, "classifier i_pbits (%d %lu)\n", \
+ c_val.i_pbits , get_flow_status(flow_index, flow_id_data[flowid][1], CLASSIFIER_I_PBITS)); \
+ OPENOLT_LOG(INFO, openolt_log_id, "classifier ether_type (0x%x 0x%lx)\n", \
+ c_val.ether_type , get_flow_status(flow_index, flow_id_data[flowid][1], CLASSIFIER_ETHER_TYPE)); \
+ OPENOLT_LOG(INFO, openolt_log_id, "classifier ip_proto (%d %lu)\n", \
+ c_val.ip_proto , get_flow_status(flow_index, flow_id_data[flowid][1], CLASSIFIER_IP_PROTO)); \
+ OPENOLT_LOG(INFO, openolt_log_id, "classifier src_port (%d %lu)\n", \
+ c_val.src_port , get_flow_status(flow_index, flow_id_data[flowid][1], CLASSIFIER_SRC_PORT)); \
+ OPENOLT_LOG(INFO, openolt_log_id, "classifier dst_port (%d %lu)\n", \
+ c_val.dst_port , get_flow_status(flow_index, flow_id_data[flowid][1], CLASSIFIER_DST_PORT)); \
+ OPENOLT_LOG(INFO, openolt_log_id, "classifier pkt_tag_type (%s %s)\n", \
+ GET_PKT_TAG_TYPE(c_val.pkt_tag_type), \
+ GET_PKT_TAG_TYPE(get_flow_status(flow_index, flow_id_data[flowid][1], CLASSIFIER_PKT_TAG_TYPE))); \
+ OPENOLT_LOG(INFO, openolt_log_id, "classifier egress_qos type (%d %lu)\n", \
+ cfg.data.egress_qos.type , get_flow_status(flow_index, flow_id_data[flowid][1], EGRESS_QOS_TYPE)); \
+ OPENOLT_LOG(INFO, openolt_log_id, "classifier egress_qos queue_id (%d %lu)\n", \
+ cfg.data.egress_qos.u.fixed_queue.queue_id, \
+ get_flow_status(flow_index, flow_id_data[flowid][1], EGRESS_QOS_QUEUE_ID)); \
+ OPENOLT_LOG(INFO, openolt_log_id, "classifier egress_qos sched_id (%d %lu)\n", \
+ cfg.data.egress_qos.tm_sched.id, \
+ get_flow_status(flow_index, flow_id_data[flowid][1], EGRESS_QOS_TM_SCHED_ID)); \
+ OPENOLT_LOG(INFO, openolt_log_id, "classifier cmds_bitmask (%s %s)\n", \
+ get_flow_acton_command(a_val.cmds_bitmask), \
+ get_flow_acton_command(get_flow_status(flow_index, flow_id_data[flowid][1], ACTION_CMDS_BITMASK))); \
+ OPENOLT_LOG(INFO, openolt_log_id, "action o_vid (%d %lu)\n", \
+ a_val.o_vid , get_flow_status(flow_index, flow_id_data[flowid][1], ACTION_O_VID)); \
+ OPENOLT_LOG(INFO, openolt_log_id, "action i_vid (%d %lu)\n", \
+ a_val.i_vid , get_flow_status(flow_index, flow_id_data[flowid][1], ACTION_I_VID)); \
+ OPENOLT_LOG(INFO, openolt_log_id, "action o_pbits (%d %lu)\n", \
+ a_val.o_pbits , get_flow_status(flow_index, flow_id_data[flowid][1], ACTION_O_PBITS)); \
+ OPENOLT_LOG(INFO, openolt_log_id, "action i_pbits (%d %lu)\n\n", \
+ a_val.i_pbits, get_flow_status(flow_index, flow_id_data[flowid][1], ACTION_I_PBITS)); \
+ } while(0)
+
+#define FLOW_CHECKER
+//#define SHOW_FLOW_PARAM
+
Status FlowAdd_(int32_t access_intf_id, int32_t onu_id, int32_t uni_id, uint32_t port_no,
uint32_t flow_id, const std::string flow_type,
int32_t alloc_id, int32_t network_intf_id,
int32_t gemport_id, const ::openolt::Classifier& classifier,
const ::openolt::Action& action, int32_t priority_value, uint64_t cookie) {
- bcmos_errno err;
- bcmbal_flow_cfg cfg;
- bcmbal_flow_key key = { };
+ bcmolt_flow_cfg cfg;
+ bcmolt_flow_key key = { }; /**< Object key. */
int32_t o_vid = -1;
bool single_tag = false;
uint32_t ether_type = 0;
-
- BCM_LOG(INFO, openolt_log_id, "flow add - intf_id %d, onu_id %d, uni_id %d, port_no %u, flow_id %d, flow_type %s, \
- gemport_id %d, network_intf_id %d, cookie %llu\n", \
- access_intf_id, onu_id, uni_id, port_no, flow_id, flow_type.c_str(), gemport_id, network_intf_id, cookie);
+ bcmolt_classifier c_val = { };
+ bcmolt_action a_val = { };
+ bcmolt_tm_queue_ref tm_val = { };
+ int tm_qmp_id, tm_q_set_id;
key.flow_id = flow_id;
if (flow_type.compare(upstream) == 0 ) {
- key.flow_type = BCMBAL_FLOW_TYPE_UPSTREAM;
+ key.flow_type = BCMOLT_FLOW_TYPE_UPSTREAM;
} else if (flow_type.compare(downstream) == 0) {
- key.flow_type = BCMBAL_FLOW_TYPE_DOWNSTREAM;
+ key.flow_type = BCMOLT_FLOW_TYPE_DOWNSTREAM;
} else {
- BCM_LOG(WARNING, openolt_log_id, "Invalid flow type %s\n", flow_type.c_str());
+ OPENOLT_LOG(ERROR, openolt_log_id, "Invalid flow type %s\n", flow_type.c_str());
return bcm_to_grpc_err(BCM_ERR_PARM, "Invalid flow type");
}
- BCMBAL_CFG_INIT(&cfg, flow, key);
+ BCMOLT_CFG_INIT(&cfg, flow, key);
+ BCMOLT_MSG_FIELD_SET(&cfg, cookie, cookie);
- BCMBAL_CFG_PROP_SET(&cfg, flow, admin_state, BCMBAL_STATE_UP);
- BCMBAL_CFG_PROP_SET(&cfg, flow, cookie, cookie);
+ if (access_intf_id >= 0 && network_intf_id >= 0) {
+ if (key.flow_type == BCMOLT_FLOW_TYPE_UPSTREAM) { //upstream
+ BCMOLT_MSG_FIELD_SET(&cfg, ingress_intf.intf_type, BCMOLT_FLOW_INTERFACE_TYPE_PON);
+ BCMOLT_MSG_FIELD_SET(&cfg, ingress_intf.intf_id, access_intf_id);
+ if (classifier.eth_type() == EAP_ETHER_TYPE || //EAPOL packet
+ (classifier.ip_proto() == 17 && classifier.src_port() == 68 && classifier.dst_port() == 67)) { //DHCP packet
+ BCMOLT_MSG_FIELD_SET(&cfg, egress_intf.intf_type, BCMOLT_FLOW_INTERFACE_TYPE_HOST);
+ } else {
+ BCMOLT_MSG_FIELD_SET(&cfg, egress_intf.intf_type, BCMOLT_FLOW_INTERFACE_TYPE_NNI);
+ BCMOLT_MSG_FIELD_SET(&cfg, egress_intf.intf_id, network_intf_id);
+ }
+ } else if (key.flow_type == BCMOLT_FLOW_TYPE_DOWNSTREAM) { //downstream
+ BCMOLT_MSG_FIELD_SET(&cfg, ingress_intf.intf_type, BCMOLT_FLOW_INTERFACE_TYPE_NNI);
+ BCMOLT_MSG_FIELD_SET(&cfg, ingress_intf.intf_id, network_intf_id);
+ BCMOLT_MSG_FIELD_SET(&cfg, egress_intf.intf_type, BCMOLT_FLOW_INTERFACE_TYPE_PON);
+ BCMOLT_MSG_FIELD_SET(&cfg, egress_intf.intf_id, access_intf_id);
+ }
+ } else {
+ OPENOLT_LOG(ERROR, openolt_log_id, "flow network setting invalid\n");
+ return bcm_to_grpc_err(BCM_ERR_PARM, "flow network setting invalid");
+ }
- if (access_intf_id >= 0) {
- BCMBAL_CFG_PROP_SET(&cfg, flow, access_int_id, access_intf_id);
- }
- if (network_intf_id >= 0) {
- BCMBAL_CFG_PROP_SET(&cfg, flow, network_int_id, network_intf_id);
- }
if (onu_id >= 0) {
- BCMBAL_CFG_PROP_SET(&cfg, flow, sub_term_id, onu_id);
+ BCMOLT_MSG_FIELD_SET(&cfg, onu_id, onu_id);
}
if (gemport_id >= 0) {
- BCMBAL_CFG_PROP_SET(&cfg, flow, svc_port_id, gemport_id);
+ BCMOLT_MSG_FIELD_SET(&cfg, svc_port_id, gemport_id);
}
if (gemport_id >= 0 && port_no != 0) {
bcmos_fastlock_lock(&data_lock);
- if (key.flow_type == BCMBAL_FLOW_TYPE_DOWNSTREAM) {
+ if (key.flow_type == BCMOLT_FLOW_TYPE_DOWNSTREAM) {
port_to_flows[port_no].insert(key.flow_id);
flowid_to_gemport[key.flow_id] = gemport_id;
}
@@ -1031,36 +1854,35 @@
bcmos_fastlock_unlock(&data_lock, 0);
}
if (priority_value >= 0) {
- BCMBAL_CFG_PROP_SET(&cfg, flow, priority, priority_value);
+ BCMOLT_MSG_FIELD_SET(&cfg, priority, priority_value);
}
{
- bcmbal_classifier val = { };
-
+ /* removed by BAL v3.0
if (classifier.o_tpid()) {
- BCM_LOG(DEBUG, openolt_log_id, "classify o_tpid 0x%04x\n", classifier.o_tpid());
+ OPENOLT_LOG(DEBUG, openolt_log_id, "classify o_tpid 0x%04x\n", classifier.o_tpid());
BCMBAL_ATTRIBUTE_PROP_SET(&val, classifier, o_tpid, classifier.o_tpid());
}
-
+ */
if (classifier.o_vid()) {
- BCM_LOG(DEBUG, openolt_log_id, "classify o_vid %d\n", classifier.o_vid());
- BCMBAL_ATTRIBUTE_PROP_SET(&val, classifier, o_vid, classifier.o_vid());
+ OPENOLT_LOG(DEBUG, openolt_log_id, "classify o_vid %d\n", classifier.o_vid());
+ BCMOLT_FIELD_SET(&c_val, classifier, o_vid, classifier.o_vid());
}
-
+ /* removed by BAL v3.0
if (classifier.i_tpid()) {
- BCM_LOG(DEBUG, openolt_log_id, "classify i_tpid 0x%04x\n", classifier.i_tpid());
+ OPENOLT_LOG(DEBUG, openolt_log_id, "classify i_tpid 0x%04x\n", classifier.i_tpid());
BCMBAL_ATTRIBUTE_PROP_SET(&val, classifier, i_tpid, classifier.i_tpid());
}
-
+ */
if (classifier.i_vid()) {
- BCM_LOG(DEBUG, openolt_log_id, "classify i_vid %d\n", classifier.i_vid());
- BCMBAL_ATTRIBUTE_PROP_SET(&val, classifier, i_vid, classifier.i_vid());
+ OPENOLT_LOG(DEBUG, openolt_log_id, "classify i_vid %d\n", classifier.i_vid());
+ BCMOLT_FIELD_SET(&c_val, classifier, i_vid, classifier.i_vid());
}
if (classifier.eth_type()) {
ether_type = classifier.eth_type();
- BCM_LOG(DEBUG, openolt_log_id, "classify ether_type 0x%04x\n", classifier.eth_type());
- BCMBAL_ATTRIBUTE_PROP_SET(&val, classifier, ether_type, classifier.eth_type());
+ OPENOLT_LOG(DEBUG, openolt_log_id, "classify ether_type 0x%04x\n", classifier.eth_type());
+ BCMOLT_FIELD_SET(&c_val, classifier, ether_type, classifier.eth_type());
}
/*
@@ -1074,8 +1896,8 @@
*/
if (classifier.ip_proto()) {
- BCM_LOG(DEBUG, openolt_log_id, "classify ip_proto %d\n", classifier.ip_proto());
- BCMBAL_ATTRIBUTE_PROP_SET(&val, classifier, ip_proto, classifier.ip_proto());
+ OPENOLT_LOG(DEBUG, openolt_log_id, "classify ip_proto %d\n", classifier.ip_proto());
+ BCMOLT_FIELD_SET(&c_val, classifier, ip_proto, classifier.ip_proto());
}
/*
@@ -1089,149 +1911,243 @@
*/
if (classifier.src_port()) {
- BCM_LOG(DEBUG, openolt_log_id, "classify src_port %d\n", classifier.src_port());
- BCMBAL_ATTRIBUTE_PROP_SET(&val, classifier, src_port, classifier.src_port());
+ OPENOLT_LOG(DEBUG, openolt_log_id, "classify src_port %d\n", classifier.src_port());
+ BCMOLT_FIELD_SET(&c_val, classifier, src_port, classifier.src_port());
}
if (classifier.dst_port()) {
- BCM_LOG(DEBUG, openolt_log_id, "classify dst_port %d\n", classifier.dst_port());
- BCMBAL_ATTRIBUTE_PROP_SET(&val, classifier, dst_port, classifier.dst_port());
+ OPENOLT_LOG(DEBUG, openolt_log_id, "classify dst_port %d\n", classifier.dst_port());
+ BCMOLT_FIELD_SET(&c_val, classifier, dst_port, classifier.dst_port());
}
if (!classifier.pkt_tag_type().empty()) {
- BCM_LOG(DEBUG, openolt_log_id, "classify tag_type %s\n", classifier.pkt_tag_type().c_str());
+ OPENOLT_LOG(DEBUG, openolt_log_id, "classify tag_type %s\n", classifier.pkt_tag_type().c_str());
if (classifier.pkt_tag_type().compare("untagged") == 0) {
- BCMBAL_ATTRIBUTE_PROP_SET(&val, classifier, pkt_tag_type, BCMBAL_PKT_TAG_TYPE_UNTAGGED);
+ BCMOLT_FIELD_SET(&c_val, classifier, pkt_tag_type, BCMOLT_PKT_TAG_TYPE_UNTAGGED);
} else if (classifier.pkt_tag_type().compare("single_tag") == 0) {
- BCMBAL_ATTRIBUTE_PROP_SET(&val, classifier, pkt_tag_type, BCMBAL_PKT_TAG_TYPE_SINGLE_TAG);
+ BCMOLT_FIELD_SET(&c_val, classifier, pkt_tag_type, BCMOLT_PKT_TAG_TYPE_SINGLE_TAG);
single_tag = true;
- BCM_LOG(DEBUG, openolt_log_id, "classify o_pbits 0x%x\n", classifier.o_pbits());
- BCMBAL_ATTRIBUTE_PROP_SET(&val, classifier, o_pbits, classifier.o_pbits());
+ OPENOLT_LOG(DEBUG, openolt_log_id, "classify o_pbits 0x%x\n", classifier.o_pbits());
+ BCMOLT_FIELD_SET(&c_val, classifier, o_pbits, classifier.o_pbits());
} else if (classifier.pkt_tag_type().compare("double_tag") == 0) {
- BCMBAL_ATTRIBUTE_PROP_SET(&val, classifier, pkt_tag_type, BCMBAL_PKT_TAG_TYPE_DOUBLE_TAG);
+ BCMOLT_FIELD_SET(&c_val, classifier, pkt_tag_type, BCMOLT_PKT_TAG_TYPE_DOUBLE_TAG);
- BCM_LOG(DEBUG, openolt_log_id, "classify o_pbits 0x%x\n", classifier.o_pbits());
- BCMBAL_ATTRIBUTE_PROP_SET(&val, classifier, o_pbits, classifier.o_pbits());
+ OPENOLT_LOG(DEBUG, openolt_log_id, "classify o_pbits 0x%x\n", classifier.o_pbits());
+ BCMOLT_FIELD_SET(&c_val, classifier, o_pbits, classifier.o_pbits());
}
}
-
- BCMBAL_CFG_PROP_SET(&cfg, flow, classifier, val);
+ BCMOLT_MSG_FIELD_SET(&cfg, classifier, c_val);
}
- {
- bcmbal_action val = { };
-
+ if (cfg.data.egress_intf.intf_type != BCMOLT_FLOW_INTERFACE_TYPE_HOST) {
const ::openolt::ActionCmd& cmd = action.cmd();
if (cmd.add_outer_tag()) {
- BCM_LOG(INFO, openolt_log_id, "action add o_tag\n");
- BCMBAL_ATTRIBUTE_PROP_SET(&val, action, cmds_bitmask, BCMBAL_ACTION_CMD_ID_ADD_OUTER_TAG);
+ OPENOLT_LOG(DEBUG, openolt_log_id, "action add o_tag\n");
+ BCMOLT_FIELD_SET(&a_val, action, cmds_bitmask, BCMOLT_ACTION_CMD_ID_ADD_OUTER_TAG);
}
if (cmd.remove_outer_tag()) {
- BCM_LOG(INFO, openolt_log_id, "action pop o_tag\n");
- BCMBAL_ATTRIBUTE_PROP_SET(&val, action, cmds_bitmask, BCMBAL_ACTION_CMD_ID_REMOVE_OUTER_TAG);
+ OPENOLT_LOG(DEBUG, openolt_log_id, "action pop o_tag\n");
+ BCMOLT_FIELD_SET(&a_val, action, cmds_bitmask, BCMOLT_ACTION_CMD_ID_REMOVE_OUTER_TAG);
}
-
+ /* removed by BAL v3.0
if (cmd.trap_to_host()) {
- BCM_LOG(INFO, openolt_log_id, "action trap-to-host\n");
+ OPENOLT_LOG(INFO, openolt_log_id, "action trap-to-host\n");
BCMBAL_ATTRIBUTE_PROP_SET(&val, action, cmds_bitmask, BCMBAL_ACTION_CMD_ID_TRAP_TO_HOST);
}
-
+ */
if (action.o_vid()) {
- BCM_LOG(INFO, openolt_log_id, "action o_vid=%d\n", action.o_vid());
+ OPENOLT_LOG(DEBUG, openolt_log_id, "action o_vid=%d\n", action.o_vid());
o_vid = action.o_vid();
- BCMBAL_ATTRIBUTE_PROP_SET(&val, action, o_vid, action.o_vid());
+ BCMOLT_FIELD_SET(&a_val, action, o_vid, action.o_vid());
}
if (action.o_pbits()) {
- BCM_LOG(INFO, openolt_log_id, "action o_pbits=0x%x\n", action.o_pbits());
- BCMBAL_ATTRIBUTE_PROP_SET(&val, action, o_pbits, action.o_pbits());
+ OPENOLT_LOG(DEBUG, openolt_log_id, "action o_pbits=0x%x\n", action.o_pbits());
+ BCMOLT_FIELD_SET(&a_val, action, o_pbits, action.o_pbits());
}
-
+ /* removed by BAL v3.0
if (action.o_tpid()) {
- BCM_LOG(INFO, openolt_log_id, "action o_tpid=0x%04x\n", action.o_tpid());
+ OPENOLT_LOG(INFO, openolt_log_id, "action o_tpid=0x%04x\n", action.o_tpid());
BCMBAL_ATTRIBUTE_PROP_SET(&val, action, o_tpid, action.o_tpid());
}
-
+ */
if (action.i_vid()) {
- BCM_LOG(INFO, openolt_log_id, "action i_vid=%d\n", action.i_vid());
- BCMBAL_ATTRIBUTE_PROP_SET(&val, action, i_vid, action.i_vid());
+ OPENOLT_LOG(DEBUG, openolt_log_id, "action i_vid=%d\n", action.i_vid());
+ BCMOLT_FIELD_SET(&a_val, action, i_vid, action.i_vid());
}
if (action.i_pbits()) {
- BCM_LOG(DEBUG, openolt_log_id, "action i_pbits=0x%x\n", action.i_pbits());
- BCMBAL_ATTRIBUTE_PROP_SET(&val, action, i_pbits, action.i_pbits());
+ OPENOLT_LOG(DEBUG, openolt_log_id, "action i_pbits=0x%x\n", action.i_pbits());
+ BCMOLT_FIELD_SET(&a_val, action, i_pbits, action.i_pbits());
}
-
+ /* removed by BAL v3.0
if (action.i_tpid()) {
- BCM_LOG(DEBUG, openolt_log_id, "action i_tpid=0x%04x\n", action.i_tpid());
+ OPENOLT_LOG(DEBUG, openolt_log_id, "action i_tpid=0x%04x\n", action.i_tpid());
BCMBAL_ATTRIBUTE_PROP_SET(&val, action, i_tpid, action.i_tpid());
}
-
- BCMBAL_CFG_PROP_SET(&cfg, flow, action, val);
+ */
+ BCMOLT_MSG_FIELD_SET(&cfg, action, a_val);
}
if ((access_intf_id >= 0) && (onu_id >= 0)) {
+ if(single_tag && ether_type == EAP_ETHER_TYPE) {
+ tm_val.sched_id = (flow_type.compare(upstream) == 0) ? \
+ get_default_tm_sched_id(network_intf_id, upstream) : \
+ get_default_tm_sched_id(access_intf_id, downstream);
+ tm_val.queue_id = 0;
- if (key.flow_type == BCMBAL_FLOW_TYPE_DOWNSTREAM) {
- bcmbal_tm_queue_ref val = { };
- if (single_tag && ether_type == EAP_ETHER_TYPE) {
- val.sched_id = get_default_tm_sched_id(access_intf_id, downstream);
- val.queue_id = 0;
+ BCMOLT_MSG_FIELD_SET(&cfg , egress_qos.type, BCMOLT_EGRESS_QOS_TYPE_FIXED_QUEUE);
+ BCMOLT_MSG_FIELD_SET(&cfg , egress_qos.tm_sched.id, tm_val.sched_id);
+ BCMOLT_MSG_FIELD_SET(&cfg , egress_qos.u.fixed_queue.queue_id, tm_val.queue_id);
- } else {
- val.sched_id = get_tm_sched_id(access_intf_id, onu_id, uni_id, downstream); // Subscriber Scheduler
- val.queue_id = get_tm_queue_id(access_intf_id, onu_id, uni_id, gemport_id, downstream);
+ OPENOLT_LOG(DEBUG, openolt_log_id, "direction = %s, queue_id = %d, sched_id = %d, intf_type %s\n", \
+ flow_type.c_str(), tm_val.queue_id, tm_val.sched_id, \
+ GET_FLOW_INTERFACE_TYPE(cfg.data.ingress_intf.intf_type));
+ } else {
+ if (key.flow_type == BCMOLT_FLOW_TYPE_DOWNSTREAM) {
+ tm_val.sched_id = get_tm_sched_id(access_intf_id, onu_id, uni_id, downstream);
+
+ if (qos_type == BCMOLT_EGRESS_QOS_TYPE_FIXED_QUEUE) {
+ // Queue 0 on DS subscriber scheduler
+ tm_val.queue_id = 0;
+
+ BCMOLT_MSG_FIELD_SET(&cfg , egress_qos.type, qos_type);
+ BCMOLT_MSG_FIELD_SET(&cfg , egress_qos.tm_sched.id, tm_val.sched_id);
+ BCMOLT_MSG_FIELD_SET(&cfg , egress_qos.u.fixed_queue.queue_id, tm_val.queue_id);
+
+ OPENOLT_LOG(DEBUG, openolt_log_id, "direction = %s, queue_id = %d, sched_id = %d, intf_type %s\n", \
+ downstream.c_str(), tm_val.queue_id, tm_val.sched_id, \
+ GET_FLOW_INTERFACE_TYPE(cfg.data.ingress_intf.intf_type));
+
+ } else if (qos_type == BCMOLT_EGRESS_QOS_TYPE_PRIORITY_TO_QUEUE) {
+ /* Fetch TM QMP ID mapped to DS subscriber scheduler */
+ tm_qmp_id = tm_q_set_id = get_tm_qmp_id(tm_val.sched_id, access_intf_id, onu_id, uni_id);
+
+ BCMOLT_MSG_FIELD_SET(&cfg , egress_qos.type, qos_type);
+ BCMOLT_MSG_FIELD_SET(&cfg , egress_qos.tm_sched.id, tm_val.sched_id);
+ BCMOLT_MSG_FIELD_SET(&cfg , egress_qos.u.priority_to_queue.tm_qmp_id, tm_qmp_id);
+ BCMOLT_MSG_FIELD_SET(&cfg , egress_qos.u.priority_to_queue.tm_q_set_id, tm_q_set_id);
+
+ OPENOLT_LOG(DEBUG, openolt_log_id, "direction = %s, q_set_id = %d, sched_id = %d, intf_type %s\n", \
+ downstream.c_str(), tm_q_set_id, tm_val.sched_id, \
+ GET_FLOW_INTERFACE_TYPE(cfg.data.ingress_intf.intf_type));
+ }
+ } else if (key.flow_type == BCMOLT_FLOW_TYPE_UPSTREAM) {
+ // NNI Scheduler ID
+ tm_val.sched_id = get_default_tm_sched_id(network_intf_id, upstream);
+ if (qos_type == BCMOLT_EGRESS_QOS_TYPE_FIXED_QUEUE) {
+ // Queue 0 on NNI scheduler
+ tm_val.queue_id = 0;
+ BCMOLT_MSG_FIELD_SET(&cfg , egress_qos.type, qos_type);
+ BCMOLT_MSG_FIELD_SET(&cfg , egress_qos.tm_sched.id, tm_val.sched_id);
+ BCMOLT_MSG_FIELD_SET(&cfg , egress_qos.u.fixed_queue.queue_id, tm_val.queue_id);
+
+ OPENOLT_LOG(DEBUG, openolt_log_id, "direction = %s, queue_id = %d, sched_id = %d, intf_type %s\n", \
+ upstream.c_str(), tm_val.queue_id, tm_val.sched_id, \
+ GET_FLOW_INTERFACE_TYPE(cfg.data.ingress_intf.intf_type));
+
+ } else if (qos_type == BCMOLT_EGRESS_QOS_TYPE_PRIORITY_TO_QUEUE) {
+ /* Fetch TM QMP ID mapped to US NNI scheduler */
+ tm_qmp_id = tm_q_set_id = get_tm_qmp_id(tm_val.sched_id, access_intf_id, onu_id, uni_id);
+ BCMOLT_MSG_FIELD_SET(&cfg , egress_qos.type, qos_type);
+ BCMOLT_MSG_FIELD_SET(&cfg , egress_qos.tm_sched.id, tm_val.sched_id);
+ BCMOLT_MSG_FIELD_SET(&cfg , egress_qos.u.priority_to_queue.tm_qmp_id, tm_qmp_id);
+ BCMOLT_MSG_FIELD_SET(&cfg , egress_qos.u.priority_to_queue.tm_q_set_id, tm_q_set_id);
+
+ OPENOLT_LOG(DEBUG, openolt_log_id, "direction = %s, q_set_id = %d, sched_id = %d, intf_type %s\n", \
+ upstream.c_str(), tm_q_set_id, tm_val.sched_id, \
+ GET_FLOW_INTERFACE_TYPE(cfg.data.ingress_intf.intf_type));
+ }
}
- BCM_LOG(INFO, openolt_log_id, "direction = %s, queue_id = %d, sched_id = %d\n", \
- downstream.c_str(), val.queue_id, val.sched_id);
- BCMBAL_CFG_PROP_SET(&cfg, flow, queue, val);
- } else if (key.flow_type == BCMBAL_FLOW_TYPE_UPSTREAM) {
- bcmbal_tm_sched_id val1;
- val1 = get_tm_sched_id(access_intf_id, onu_id, uni_id, upstream); // DBA Scheduler ID
- BCMBAL_CFG_PROP_SET(&cfg, flow, dba_tm_sched_id, val1);
-
- bcmbal_tm_queue_ref val2 = { };
- val2.sched_id = get_default_tm_sched_id(network_intf_id, upstream); // NNI Scheduler ID
- val2.queue_id = get_tm_queue_id(access_intf_id, onu_id, uni_id, gemport_id, upstream); // Queue on NNI
- BCM_LOG(INFO, openolt_log_id, "direction = %s, queue_id = %d, sched_id = %d\n", \
- upstream.c_str(), val2.queue_id, val2.sched_id);
- BCMBAL_CFG_PROP_SET(&cfg, flow, queue, val2);
}
}
- err = bcmbal_cfg_set(DEFAULT_ATERM_ID, &(cfg.hdr));
- if (err) {
- BCM_LOG(ERROR, openolt_log_id, "Flow add failed\n");
- return bcm_to_grpc_err(err, "flow add failed");
- }
+ BCMOLT_MSG_FIELD_SET(&cfg, state, BCMOLT_FLOW_STATE_ENABLE);
+ BCMOLT_MSG_FIELD_SET(&cfg, statistics, BCMOLT_CONTROL_STATE_ENABLE);
+#ifdef FLOW_CHECKER
+ //Flow Checker, To avoid duplicate flow.
+ if (flow_id_counters != 0) {
+ bool b_duplicate_flow = false;
+ for (int flowid=0; flowid < flow_id_counters; flowid++) {
+ int flow_index = flow_id_data[flowid][0];
+ b_duplicate_flow = (cfg.data.onu_id == get_flow_status(flow_index, flow_id_data[flowid][1], ONU_ID)) && \
+ (key.flow_type == flow_id_data[flowid][1]) && \
+ (cfg.data.svc_port_id == get_flow_status(flow_index, flow_id_data[flowid][1], SVC_PORT_ID)) && \
+ (cfg.data.priority == get_flow_status(flow_index, flow_id_data[flowid][1], PRIORITY)) && \
+ (cfg.data.cookie == get_flow_status(flow_index, flow_id_data[flowid][1], COOKIE)) && \
+ (cfg.data.ingress_intf.intf_type == get_flow_status(flow_index, flow_id_data[flowid][1], INGRESS_INTF_TYPE)) && \
+ (cfg.data.ingress_intf.intf_id == get_flow_status(flow_index, flow_id_data[flowid][1], INGRESS_INTF_ID)) && \
+ (cfg.data.egress_intf.intf_type == get_flow_status(flow_index, flow_id_data[flowid][1], EGRESS_INTF_TYPE)) && \
+ (cfg.data.egress_intf.intf_id == get_flow_status(flow_index, flow_id_data[flowid][1], EGRESS_INTF_ID)) && \
+ (c_val.o_vid == get_flow_status(flow_index, flow_id_data[flowid][1], CLASSIFIER_O_VID)) && \
+ (c_val.o_pbits == get_flow_status(flow_index, flow_id_data[flowid][1], CLASSIFIER_O_PBITS)) && \
+ (c_val.i_vid == get_flow_status(flow_index, flow_id_data[flowid][1], CLASSIFIER_I_VID)) && \
+ (c_val.i_pbits == get_flow_status(flow_index, flow_id_data[flowid][1], CLASSIFIER_I_PBITS)) && \
+ (c_val.ether_type == get_flow_status(flow_index, flow_id_data[flowid][1], CLASSIFIER_ETHER_TYPE)) && \
+ (c_val.ip_proto == get_flow_status(flow_index, flow_id_data[flowid][1], CLASSIFIER_IP_PROTO)) && \
+ (c_val.src_port == get_flow_status(flow_index, flow_id_data[flowid][1], CLASSIFIER_SRC_PORT)) && \
+ (c_val.dst_port == get_flow_status(flow_index, flow_id_data[flowid][1], CLASSIFIER_DST_PORT)) && \
+ (c_val.pkt_tag_type == get_flow_status(flow_index, flow_id_data[flowid][1], CLASSIFIER_PKT_TAG_TYPE)) && \
+ (cfg.data.egress_qos.type == get_flow_status(flow_index, flow_id_data[flowid][1], EGRESS_QOS_TYPE)) && \
+ (cfg.data.egress_qos.u.fixed_queue.queue_id == get_flow_status(flow_index, flow_id_data[flowid][1], EGRESS_QOS_QUEUE_ID)) && \
+ (cfg.data.egress_qos.tm_sched.id == get_flow_status(flow_index, flow_id_data[flowid][1], EGRESS_QOS_TM_SCHED_ID)) && \
+ (a_val.cmds_bitmask == get_flow_status(flowid, flow_id_data[flowid][1], ACTION_CMDS_BITMASK)) && \
+ (a_val.o_vid == get_flow_status(flow_index, flow_id_data[flowid][1], ACTION_O_VID)) && \
+ (a_val.i_vid == get_flow_status(flow_index, flow_id_data[flowid][1], ACTION_I_VID)) && \
+ (a_val.o_pbits == get_flow_status(flow_index, flow_id_data[flowid][1], ACTION_O_PBITS)) && \
+ (a_val.i_pbits == get_flow_status(flow_index, flow_id_data[flowid][1], ACTION_I_PBITS)) && \
+ (cfg.data.state == get_flow_status(flowid, flow_id_data[flowid][1], STATE));
+#ifdef SHOW_FLOW_PARAM
+ // Flow Parameter
+ FLOW_PARAM_LOG();
+#endif
- // register_new_flow(key);
+ if (b_duplicate_flow) {
+ FLOW_LOG(WARNING, "Flow duplicate", 0);
+ return bcm_to_grpc_err(BCM_ERR_ALREADY, "flow exists");
+ }
+ }
+ }
+#endif
+
+ bcmos_errno err = bcmolt_cfg_set(dev_id, &cfg.hdr);
+ if (err) {
+ FLOW_LOG(ERROR, "Flow add failed", err);
+ return bcm_to_grpc_err(err, "flow add failed");
+ } else {
+ FLOW_LOG(INFO, "Flow add ok", err);
+ bcmos_fastlock_lock(&data_lock);
+ flow_id_data[flow_id_counters][0] = key.flow_id;
+ flow_id_data[flow_id_counters][1] = key.flow_type;
+ flow_id_counters += 1;
+ bcmos_fastlock_unlock(&data_lock, 0);
+ }
return Status::OK;
}
Status FlowRemove_(uint32_t flow_id, const std::string flow_type) {
- bcmbal_flow_cfg cfg;
- bcmbal_flow_key key = { };
+ bcmolt_flow_cfg cfg;
+ bcmolt_flow_key key = { };
- key.flow_id = (bcmbal_flow_id) flow_id;
+ key.flow_id = (bcmolt_flow_id) flow_id;
key.flow_id = flow_id;
if (flow_type.compare(upstream) == 0 ) {
- key.flow_type = BCMBAL_FLOW_TYPE_UPSTREAM;
+ key.flow_type = BCMOLT_FLOW_TYPE_UPSTREAM;
} else if (flow_type.compare(downstream) == 0) {
- key.flow_type = BCMBAL_FLOW_TYPE_DOWNSTREAM;
+ key.flow_type = BCMOLT_FLOW_TYPE_DOWNSTREAM;
} else {
- BCM_LOG(WARNING, openolt_log_id, "Invalid flow type %s\n", flow_type.c_str());
+ OPENOLT_LOG(WARNING, openolt_log_id, "Invalid flow type %s\n", flow_type.c_str());
return bcm_to_grpc_err(BCM_ERR_PARM, "Invalid flow type");
}
bcmos_fastlock_lock(&data_lock);
uint32_t port_no = flowid_to_port[key.flow_id];
- if (key.flow_type == BCMBAL_FLOW_TYPE_DOWNSTREAM) {
+ if (key.flow_type == BCMOLT_FLOW_TYPE_DOWNSTREAM) {
flowid_to_gemport.erase(key.flow_id);
port_to_flows[port_no].erase(key.flow_id);
if (port_to_flows[port_no].empty()) port_to_flows.erase(port_no);
@@ -1242,20 +2158,86 @@
}
bcmos_fastlock_unlock(&data_lock, 0);
- BCMBAL_CFG_INIT(&cfg, flow, key);
+ BCMOLT_CFG_INIT(&cfg, flow, key);
-
- bcmos_errno err = bcmbal_cfg_clear(DEFAULT_ATERM_ID, &cfg.hdr);
+ bcmos_errno err = bcmolt_cfg_clear(dev_id, &cfg.hdr);
if (err) {
- BCM_LOG(ERROR, openolt_log_id, "Error %d while removing flow %d, %s\n",
+ OPENOLT_LOG(ERROR, openolt_log_id, "Error %d while removing flow %d, %s\n",
err, flow_id, flow_type.c_str());
return Status(grpc::StatusCode::INTERNAL, "Failed to remove flow");
}
- BCM_LOG(INFO, openolt_log_id, "Flow %d, %s removed\n", flow_id, flow_type.c_str());
+ bcmos_fastlock_lock(&data_lock);
+ for (int flowid=0; flowid < flow_id_counters; flowid++) {
+ if (flow_id_data[flowid][0] == flow_id && flow_id_data[flowid][1] == key.flow_type) {
+ flow_id_counters -= 1;
+ for (int i=flowid; i < flow_id_counters; i++) {
+ flow_id_data[i][0] = flow_id_data[i + 1][0];
+ flow_id_data[i][1] = flow_id_data[i + 1][1];
+ }
+ break;
+ }
+ }
+ bcmos_fastlock_unlock(&data_lock, 0);
+
+ OPENOLT_LOG(INFO, openolt_log_id, "Flow %d, %s removed\n", flow_id, flow_type.c_str());
return Status::OK;
}
+bcmos_errno CreateDefaultSched(uint32_t intf_id, const std::string direction) {
+ bcmos_errno err;
+ bcmolt_tm_sched_cfg tm_sched_cfg;
+ bcmolt_tm_sched_key tm_sched_key = {.id = 1};
+ tm_sched_key.id = get_default_tm_sched_id(intf_id, direction);
+
+ // bcmbal_tm_sched_owner
+ BCMOLT_CFG_INIT(&tm_sched_cfg, tm_sched, tm_sched_key);
+
+ /**< The output of the tm_sched object instance */
+ BCMOLT_MSG_FIELD_SET(&tm_sched_cfg, attachment_point.type, BCMOLT_TM_SCHED_OUTPUT_TYPE_INTERFACE);
+
+ if (direction.compare(upstream) == 0) {
+ // In upstream it is NNI scheduler
+ BCMOLT_MSG_FIELD_SET(&tm_sched_cfg, attachment_point.u.interface.interface_ref.intf_type, BCMOLT_INTERFACE_TYPE_NNI);
+ } else if (direction.compare(downstream) == 0) {
+ // In downstream it is PON scheduler
+ BCMOLT_MSG_FIELD_SET(&tm_sched_cfg, attachment_point.u.interface.interface_ref.intf_type, BCMOLT_INTERFACE_TYPE_PON);
+ }
+
+ BCMOLT_MSG_FIELD_SET(&tm_sched_cfg, attachment_point.u.interface.interface_ref.intf_id, intf_id);
+
+ // bcmbal_tm_sched_type
+ // set the deafult policy to strict priority
+ BCMOLT_MSG_FIELD_SET(&tm_sched_cfg, sched_type, BCMOLT_TM_SCHED_TYPE_SP);
+
+ // num_priorities: Max number of strict priority scheduling elements
+ BCMOLT_MSG_FIELD_SET(&tm_sched_cfg, num_priorities, 8);
+
+ // bcmbal_tm_shaping
+ uint32_t cir = 1000000;
+ uint32_t pir = 1000000;
+ uint32_t burst = 65536;
+ OPENOLT_LOG(INFO, openolt_log_id, "applying traffic shaping in %s pir=%u, burst=%u\n",
+ direction.c_str(), pir, burst);
+ BCMOLT_FIELD_SET_PRESENT(&tm_sched_cfg.data.rate, tm_shaping, pir);
+ BCMOLT_FIELD_SET_PRESENT(&tm_sched_cfg.data.rate, tm_shaping, burst);
+ // FIXME: Setting CIR, results in BAL throwing error 'tm_sched minimum rate is not supported yet'
+ // BCMOLT_MSG_FIELD_SET(&tm_sched_cfg, rate.cir, cir);
+ BCMOLT_MSG_FIELD_SET(&tm_sched_cfg, rate.pir, pir);
+ BCMOLT_MSG_FIELD_SET(&tm_sched_cfg, rate.burst, burst);
+
+ err = bcmolt_cfg_set(dev_id, &tm_sched_cfg.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to create %s scheduler, id %d, intf_id %d, err %d\n", \
+ direction.c_str(), tm_sched_key.id, intf_id, err);
+ return err;
+ }
+
+ OPENOLT_LOG(INFO, openolt_log_id, "Create %s scheduler success, id %d, intf_id %d\n", \
+ direction.c_str(), tm_sched_key.id, intf_id);
+ return BCM_ERR_OK;
+}
+
bcmos_errno CreateSched(std::string direction, uint32_t intf_id, uint32_t onu_id, uint32_t uni_id, uint32_t port_no,
uint32_t alloc_id, tech_profile::AdditionalBW additional_bw, uint32_t weight, uint32_t priority,
tech_profile::SchedulingPolicy sched_policy, tech_profile::TrafficShapingInfo tf_sh_info) {
@@ -1263,115 +2245,170 @@
bcmos_errno err;
if (direction == downstream) {
+ bcmolt_tm_sched_cfg tm_sched_cfg;
+ bcmolt_tm_sched_key tm_sched_key = {.id = 1};
+ tm_sched_key.id = get_tm_sched_id(intf_id, onu_id, uni_id, direction);
- bcmbal_tm_sched_cfg cfg;
- bcmbal_tm_sched_key key = { };
- key.id = get_tm_sched_id(intf_id, onu_id, uni_id, direction);
- key.dir = BCMBAL_TM_SCHED_DIR_DS;
+ // bcmbal_tm_sched_owner
+ // In downstream it is sub_term scheduler
+ BCMOLT_CFG_INIT(&tm_sched_cfg, tm_sched, tm_sched_key);
- BCMBAL_CFG_INIT(&cfg, tm_sched, key);
+ /**< The output of the tm_sched object instance */
+ BCMOLT_MSG_FIELD_SET(&tm_sched_cfg, attachment_point.type, BCMOLT_TM_SCHED_OUTPUT_TYPE_TM_SCHED);
- {
- // bcmbal_tm_sched_owner
- // In downstream it is sub_term scheduler
- bcmbal_tm_sched_owner tm_sched_owner = { };
- tm_sched_owner.type = BCMBAL_TM_SCHED_OWNER_TYPE_SUB_TERM;
- tm_sched_owner.u.sub_term.intf_id = intf_id;
- tm_sched_owner.u.sub_term.sub_term_id = onu_id;
- BCMBAL_CFG_PROP_SET(&cfg, tm_sched, owner, tm_sched_owner);
+ // bcmbal_tm_sched_parent
+ // The parent for the sub_term scheduler is the PON scheduler in the downstream
+ BCMOLT_MSG_FIELD_SET(&tm_sched_cfg, attachment_point.u.tm_sched.tm_sched_id, get_default_tm_sched_id(intf_id, direction));
+ BCMOLT_MSG_FIELD_SET(&tm_sched_cfg, attachment_point.u.tm_sched.tm_sched_param.u.priority.priority, priority);
+ /* removed by BAL v3.0, N/A - No direct attachment point of type ONU, same functionality may
+ be achieved using the' virtual' type of attachment.
+ tm_sched_owner.u.sub_term.intf_id = intf_id;
+ tm_sched_owner.u.sub_term.sub_term_id = onu_id;
+ */
- // bcmbal_tm_sched_type
- // set the deafult policy to strict priority
- BCMBAL_CFG_PROP_SET(&cfg, tm_sched, sched_type, BCMBAL_TM_SCHED_TYPE_SP);
+ // bcmbal_tm_sched_type
+ // set the deafult policy to strict priority
+ BCMOLT_MSG_FIELD_SET(&tm_sched_cfg, sched_type, BCMOLT_TM_SCHED_TYPE_SP);
- // bcmbal_tm_sched_parent
- // The parent for the sub_term scheduler is the PON scheduler in the downstream
- bcmbal_tm_sched_parent tm_sched_parent = { };
- tm_sched_parent.presence_mask |= (BCMBAL_TM_SCHED_PARENT_ID_SCHED_ID);
- tm_sched_parent.sched_id = get_default_tm_sched_id(intf_id, downstream);
- tm_sched_parent.presence_mask |= (BCMBAL_TM_SCHED_PARENT_ID_PRIORITY);
- tm_sched_parent.priority = 1; // TODO: Hardcoded priority as 1
- BCMBAL_CFG_PROP_SET(&cfg, tm_sched, sched_parent, tm_sched_parent);
+ // num_priorities: Max number of strict priority scheduling elements
+ BCMOLT_MSG_FIELD_SET(&tm_sched_cfg, num_priorities, 8);
- // num_priorities: Max number of strict priority scheduling elements
- BCMBAL_CFG_PROP_SET(&cfg, tm_sched, num_priorities, 8); // TODO: hardcoded 8 priorities.
-
- // bcmbal_tm_shaping
- if (tf_sh_info.cir() >= 0 && tf_sh_info.pir() > 0) {
- bcmbal_tm_shaping rate = {};
- uint32_t cir = tf_sh_info.cir();
- uint32_t pir = tf_sh_info.pir();
- uint32_t burst = tf_sh_info.pbs();
- BCM_LOG(INFO, openolt_log_id, "applying traffic shaping in DL cir=%u, pir=%u, burst=%u\n",
- cir, pir, burst);
- rate.presence_mask = BCMBAL_TM_SHAPING_ID_NONE;
- rate.presence_mask |= BCMBAL_TM_SHAPING_ID_PIR;
- rate.presence_mask |= BCMBAL_TM_SHAPING_ID_BURST;
- // FIXME: Setting CIR, results in BAL throwing error 'tm_sched minimum rate is not supported yet'
- // rate.cir = cir;
- rate.pir = pir;
- rate.burst = burst;
-
- BCMBAL_CFG_PROP_SET(&cfg, tm_sched, rate, rate);
- }
-
- // creation_mode
- // BCMBAL_CFG_PROP_SET(&cfg, tm_sched, creation_mode, BCMBAL_TM_CREATION_MODE_MANUAL);
+ // bcmbal_tm_shaping
+ if (tf_sh_info.cir() >= 0 && tf_sh_info.pir() > 0) {
+ uint32_t cir = tf_sh_info.cir();
+ uint32_t pir = tf_sh_info.pir();
+ uint32_t burst = tf_sh_info.pbs();
+ OPENOLT_LOG(INFO, openolt_log_id, "applying traffic shaping in DL cir=%u, pir=%u, burst=%u\n",
+ cir, pir, burst);
+ BCMOLT_FIELD_SET_PRESENT(&tm_sched_cfg.data.rate, tm_shaping, pir);
+ BCMOLT_FIELD_SET_PRESENT(&tm_sched_cfg.data.rate, tm_shaping, burst);
+ // FIXME: Setting CIR, results in BAL throwing error 'tm_sched minimum rate is not supported yet'
+ //BCMOLT_MSG_FIELD_SET(&tm_sched_cfg, rate.cir, cir);
+ BCMOLT_MSG_FIELD_SET(&tm_sched_cfg, rate.pir, pir);
+ BCMOLT_MSG_FIELD_SET(&tm_sched_cfg, rate.burst, burst);
}
- err = bcmbal_cfg_set(DEFAULT_ATERM_ID, &(cfg.hdr));
+ err = bcmolt_cfg_set(dev_id, &tm_sched_cfg.hdr);
if (err) {
- BCM_LOG(ERROR, openolt_log_id, "Failed to create downstream subscriber scheduler, id %d, intf_id %d, \
- onu_id %d, uni_id %d, port_no %u\n", key.id, intf_id, onu_id,uni_id,port_no);
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to create downstream subscriber scheduler, id %d, \
+intf_id %d, onu_id %d, uni_id %d, port_no %u\n", tm_sched_key.id, intf_id, onu_id, \
+ uni_id, port_no);
return err;
}
- BCM_LOG(INFO, openolt_log_id, "Create downstream subscriber sched, id %d, intf_id %d, onu_id %d, \
- uni_id %d, port_no %u\n", key.id,intf_id,onu_id,uni_id,port_no);
+ OPENOLT_LOG(INFO, openolt_log_id, "Create downstream subscriber sched, id %d, intf_id %d, onu_id %d, \
+uni_id %d, port_no %u\n", tm_sched_key.id, intf_id, onu_id, uni_id, port_no);
} else { //upstream
- bcmbal_tm_sched_cfg cfg;
- bcmbal_tm_sched_key key = { };
+ bcmolt_itupon_alloc_cfg cfg;
+ bcmolt_itupon_alloc_key key = { };
+ key.pon_ni = intf_id;
+ key.alloc_id = alloc_id;
+ int bw_granularity = (board_technology == "XGS-PON")?XGS_BANDWIDTH_GRANULARITY:GPON_BANDWIDTH_GRANULARITY;
+ int pir_bw = tf_sh_info.pir();
+ int cir_bw = tf_sh_info.cir();
+ //offset to match bandwidth granularity
+ int offset_pir_bw = pir_bw%bw_granularity;
+ int offset_cir_bw = cir_bw%bw_granularity;
- key.id = get_tm_sched_id(intf_id, onu_id, uni_id, direction);
- key.dir = BCMBAL_TM_SCHED_DIR_US;
+ pir_bw = pir_bw - offset_pir_bw;
+ cir_bw = cir_bw - offset_cir_bw;
- BCMBAL_CFG_INIT(&cfg, tm_sched, key);
+ BCMOLT_CFG_INIT(&cfg, itupon_alloc, key);
- {
- // bcmbal_tm_sched_owner: AGG PORT
- bcmbal_tm_sched_owner tm_sched_owner = { };
- tm_sched_owner.type = BCMBAL_TM_SCHED_OWNER_TYPE_AGG_PORT;
- tm_sched_owner.u.agg_port.presence_mask |= bcmbal_tm_sched_owner_agg_port_id_all;
- tm_sched_owner.u.agg_port.intf_id = intf_id;
- tm_sched_owner.u.agg_port.sub_term_id = onu_id;
- tm_sched_owner.u.agg_port.agg_port_id = alloc_id;
- BCMBAL_CFG_PROP_SET(&cfg, tm_sched, owner, tm_sched_owner);
-
- // bcmbal_tm_shaping
- if (tf_sh_info.cir() >= 0 && tf_sh_info.pir() > 0) {
- bcmbal_tm_shaping rate = {};
- uint32_t cir = tf_sh_info.cir();
- uint32_t pir = tf_sh_info.pir();
- uint32_t burst = tf_sh_info.pbs();
- BCM_LOG(INFO, openolt_log_id, "applying traffic shaping in UL cir=%u, pir=%u, burst=%u\n",
- cir, pir, burst);
- rate.presence_mask = BCMBAL_TM_SHAPING_ID_ALL;
- rate.cir = cir;
- rate.pir = pir;
- rate.burst = burst;
-
- BCMBAL_CFG_PROP_SET(&cfg, tm_sched, rate, rate);
- }
+ switch (additional_bw) {
+ case 2: //AdditionalBW_BestEffort
+ if (pir_bw == 0) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Maximum bandwidth was set to 0, must be at least \
+%d bytes/sec\n", (board_technology == "XGS-PON")?XGS_BANDWIDTH_GRANULARITY:GPON_BANDWIDTH_GRANULARITY);
+ } else if (pir_bw < cir_bw) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Maximum bandwidth (%d) can't be less than Guaranteed \
+bandwidth (%d)\n", pir_bw, cir_bw);
+ return BCM_ERR_PARM;
+ } else if (pir_bw == cir_bw) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Maximum bandwidth must be greater than Guaranteed \
+bandwidth for additional bandwidth eligibility of type best_effort\n");
+ return BCM_ERR_PARM;
+ }
+ BCMOLT_MSG_FIELD_SET(&cfg, sla.additional_bw_eligibility, BCMOLT_ADDITIONAL_BW_ELIGIBILITY_BEST_EFFORT);
+ break;
+ case 1: //AdditionalBW_NA
+ if (pir_bw == 0) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Maximum bandwidth was set to 0, must be at least \
+%d bytes/sec\n", (board_technology == "XGS-PON")?XGS_BANDWIDTH_GRANULARITY:GPON_BANDWIDTH_GRANULARITY);
+ return BCM_ERR_PARM;
+ } else if (cir_bw == 0) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Guaranteed bandwidth must be greater than zero for \
+additional bandwidth eligibility of type Non-Assured (NA)\n");
+ return BCM_ERR_PARM;
+ } else if (pir_bw < cir_bw) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Maximum bandwidth (%d) can't be less than Guaranteed \
+bandwidth (%d)\n", pir_bw, cir_bw);
+ return BCM_ERR_PARM;
+ } else if (pir_bw == cir_bw) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Maximum bandwidth must be greater than Guaranteed \
+bandwidth for additional bandwidth eligibility of type non_assured\n");
+ return BCM_ERR_PARM;
+ }
+ BCMOLT_MSG_FIELD_SET(&cfg, sla.additional_bw_eligibility, BCMOLT_ADDITIONAL_BW_ELIGIBILITY_NON_ASSURED);
+ break;
+ case 0: //AdditionalBW_None
+ if (pir_bw == 0) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Maximum bandwidth was set to 0, must be at least \
+16000 bytes/sec\n");
+ return BCM_ERR_PARM;
+ } else if (cir_bw == 0) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Maximum bandwidth must be equal to Guaranteed bandwidth \
+for additional bandwidth eligibility of type None\n");
+ return BCM_ERR_PARM;
+ } else if (pir_bw > cir_bw) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Maximum bandwidth must be equal to Guaranteed bandwidth \
+for additional bandwidth eligibility of type None\n");
+ OPENOLT_LOG(ERROR, openolt_log_id, "set Maximum bandwidth (%d) to Guaranteed \
+bandwidth in None eligibility\n", pir_bw);
+ cir_bw = pir_bw;
+ } else if (pir_bw < cir_bw) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Maximum bandwidth (%d) can't be less than Guaranteed \
+bandwidth (%d)\n", pir_bw, cir_bw);
+ OPENOLT_LOG(ERROR, openolt_log_id, "set Maximum bandwidth (%d) to Guaranteed \
+bandwidth in None eligibility\n", pir_bw);
+ cir_bw = pir_bw;
+ }
+ BCMOLT_MSG_FIELD_SET(&cfg, sla.additional_bw_eligibility, BCMOLT_ADDITIONAL_BW_ELIGIBILITY_NONE);
+ break;
+ default:
+ return BCM_ERR_PARM;
}
+ /* CBR Real Time Bandwidth which require shaping of the bandwidth allocations
+ in a fine granularity. */
+ BCMOLT_MSG_FIELD_SET(&cfg, sla.cbr_rt_bw, 0);
+ /* Fixed Bandwidth with no critical requirement of shaping */
+ BCMOLT_MSG_FIELD_SET(&cfg, sla.cbr_nrt_bw, 0);
+ /* Dynamic bandwidth which the OLT is committed to allocate upon demand */
+ BCMOLT_MSG_FIELD_SET(&cfg, sla.guaranteed_bw, cir_bw);
+ /* Maximum allocated bandwidth allowed for this alloc ID */
+ BCMOLT_MSG_FIELD_SET(&cfg, sla.maximum_bw, pir_bw);
+ BCMOLT_MSG_FIELD_SET(&cfg, sla.alloc_type, BCMOLT_ALLOC_TYPE_NSR);
+ /* Set to True for AllocID with CBR RT Bandwidth that requires compensation
+ for skipped allocations during quiet window */
+ BCMOLT_MSG_FIELD_SET(&cfg, sla.cbr_rt_compensation, BCMOS_FALSE);
+ /**< Allocation Profile index for CBR non-RT Bandwidth */
+ BCMOLT_MSG_FIELD_SET(&cfg, sla.cbr_nrt_ap_index, 0);
+ /**< Allocation Profile index for CBR RT Bandwidth */
+ BCMOLT_MSG_FIELD_SET(&cfg, sla.cbr_rt_ap_index, 0);
+ /**< Alloc ID Weight used in case of Extended DBA mode */
+ BCMOLT_MSG_FIELD_SET(&cfg, sla.weight, 0);
+ /**< Alloc ID Priority used in case of Extended DBA mode */
+ BCMOLT_MSG_FIELD_SET(&cfg, sla.priority, 0);
+ BCMOLT_MSG_FIELD_SET(&cfg, onu_id, onu_id);
- err = bcmbal_cfg_set(DEFAULT_ATERM_ID, &(cfg.hdr));
+ err = bcmolt_cfg_set(dev_id, &cfg.hdr);
if (err) {
- BCM_LOG(ERROR, openolt_log_id, "Failed to create upstream DBA sched, id %d, intf_id %d, onu_id %d, uni_id %d,\
- port_no %u, alloc_id %d\n", key.id, intf_id, onu_id,uni_id,port_no,alloc_id);
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to create upstream bandwidth allocation, intf_id %d, onu_id %d, uni_id %d,\
+port_no %u, alloc_id %d, err %d\n", intf_id, onu_id,uni_id,port_no,alloc_id, err);
return err;
}
- BCM_LOG(INFO, openolt_log_id, "Create upstream DBA sched, id %d, intf_id %d, onu_id %d, uni_id %d, port_no %u, \
- alloc_id %d\n", key.id,intf_id,onu_id,uni_id,port_no,alloc_id);
+ OPENOLT_LOG(INFO, openolt_log_id, "Create upstream bandwidth allocation, intf_id %d, onu_id %d, uni_id %d, port_no %u, \
+alloc_id %d\n", intf_id,onu_id,uni_id,port_no,alloc_id);
}
return BCM_ERR_OK;
@@ -1394,15 +2431,11 @@
for (int i = 0; i < traffic_scheds->traffic_scheds_size(); i++) {
tech_profile::TrafficScheduler traffic_sched = traffic_scheds->traffic_scheds(i);
- if (traffic_sched.direction() == tech_profile::Direction::UPSTREAM) {
- direction = upstream;
- } else if (traffic_sched.direction() == tech_profile::Direction::DOWNSTREAM) {
- direction = downstream;
- }
- else {
- BCM_LOG(ERROR, openolt_log_id, "direction-not-supported %d", traffic_sched.direction());
- return Status::CANCELLED;
- }
+
+ direction = GetDirection(traffic_sched.direction());
+ if (direction.compare("direction-not-supported") == 0)
+ return bcm_to_grpc_err(BCM_ERR_PARM, "direction-not-supported");
+
alloc_id = traffic_sched.alloc_id();
sched_config = traffic_sched.scheduler();
additional_bw = sched_config.additional_bw();
@@ -1419,39 +2452,47 @@
return Status::OK;
}
-bcmos_errno RemoveSched(int intf_id, int onu_id, int uni_id, std::string direction) {
+bcmos_errno RemoveSched(int intf_id, int onu_id, int uni_id, int alloc_id, std::string direction) {
bcmos_errno err;
- bcmbal_tm_sched_cfg tm_cfg_us;
- bcmbal_tm_sched_key tm_key_us = { };
-
- if (is_tm_sched_id_present(intf_id, onu_id, uni_id, direction)) {
- tm_key_us.id = get_tm_sched_id(intf_id, onu_id, uni_id, direction);
- } else {
- BCM_LOG(INFO, openolt_log_id, "schduler not present in %s\n", direction.c_str());
- return BCM_ERR_OK;
- }
if (direction == upstream) {
- tm_key_us.dir = BCMBAL_TM_SCHED_DIR_US;
- } else {
- tm_key_us.dir = BCMBAL_TM_SCHED_DIR_DS;
- }
+ bcmolt_itupon_alloc_cfg cfg;
+ bcmolt_itupon_alloc_key key = { };
+ key.pon_ni = intf_id;
+ key.alloc_id = alloc_id;
- BCMBAL_CFG_INIT(&tm_cfg_us, tm_sched, tm_key_us);
+ BCMOLT_CFG_INIT(&cfg, itupon_alloc, key);
+ err = bcmolt_cfg_clear(dev_id, &cfg.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to remove scheduler sched, direction = %s, intf_id %d, alloc_id %d, err %d\n", \
+ direction.c_str(), intf_id, alloc_id, err);
+ return err;
+ }
+ OPENOLT_LOG(INFO, openolt_log_id, "Removed sched, direction = %s, intf_id %d, alloc_id %d\n", \
+ direction.c_str(), intf_id, alloc_id);
+ } else if (direction == downstream) {
+ bcmolt_tm_sched_cfg cfg;
+ bcmolt_tm_sched_key key = { };
- err = bcmbal_cfg_clear(DEFAULT_ATERM_ID, &(tm_cfg_us.hdr));
- if (err) {
- BCM_LOG(ERROR, openolt_log_id, "Failed to remove scheduler sched, direction = %s, id %d, intf_id %d, onu_id %d\n", \
- direction.c_str(), tm_key_us.id, intf_id, onu_id);
- return err;
+ if (is_tm_sched_id_present(intf_id, onu_id, uni_id, direction)) {
+ key.id = get_tm_sched_id(intf_id, onu_id, uni_id, direction);
+ } else {
+ OPENOLT_LOG(INFO, openolt_log_id, "schduler not present in %s, err %d\n", direction.c_str(), err);
+ return BCM_ERR_OK;
+ }
+ BCMOLT_CFG_INIT(&cfg, tm_sched, key);
+ err = bcmolt_cfg_clear(dev_id, &(cfg.hdr));
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to remove scheduler, direction = %s, id %d, intf_id %d, onu_id %d\n", \
+ direction.c_str(), key.id, intf_id, onu_id);
+ return err;
+ }
+ OPENOLT_LOG(INFO, openolt_log_id, "Removed sched, direction = %s, id %d, intf_id %d, onu_id %d\n", \
+ direction.c_str(), key.id, intf_id, onu_id);
}
free_tm_sched_id(intf_id, onu_id, uni_id, direction);
-
- BCM_LOG(INFO, openolt_log_id, "Removed sched, direction = %s, id %d, intf_id %d, onu_id %d\n", \
- direction.c_str(), tm_key_us.id, intf_id, onu_id);
-
return BCM_ERR_OK;
}
@@ -1464,16 +2505,13 @@
for (int i = 0; i < traffic_scheds->traffic_scheds_size(); i++) {
tech_profile::TrafficScheduler traffic_sched = traffic_scheds->traffic_scheds(i);
- if (traffic_sched.direction() == tech_profile::Direction::UPSTREAM) {
- direction = upstream;
- } else if (traffic_sched.direction() == tech_profile::Direction::DOWNSTREAM) {
- direction = downstream;
- }
- else {
- BCM_LOG(ERROR, openolt_log_id, "direction-not-supported %d", traffic_sched.direction());
- return Status::CANCELLED;
- }
- err = RemoveSched(intf_id, onu_id, uni_id, direction);
+
+ direction = GetDirection(traffic_sched.direction());
+ if (direction.compare("direction-not-supported") == 0)
+ return bcm_to_grpc_err(BCM_ERR_PARM, "direction-not-supported");
+
+ int alloc_id = traffic_sched.alloc_id();
+ err = RemoveSched(intf_id, onu_id, uni_id, alloc_id, direction);
if (err) {
return bcm_to_grpc_err(err, "error-removing-traffic-scheduler");
}
@@ -1481,85 +2519,195 @@
return Status::OK;
}
-bcmos_errno CreateQueue(std::string direction, uint32_t access_intf_id, uint32_t onu_id, uint32_t uni_id, uint32_t priority,
- uint32_t gemport_id) {
+bcmos_errno CreateTrafficQueueMappingProfile(uint32_t sched_id, uint32_t intf_id, uint32_t onu_id, uint32_t uni_id, \
+ std::string direction, std::vector<uint32_t> tmq_map_profile) {
bcmos_errno err;
- bcmbal_tm_queue_cfg cfg;
- bcmbal_tm_queue_key key = { };
- BCM_LOG(INFO, openolt_log_id, "creating queue. access_intf_id = %d, onu_id = %d, uni_id = %d \
- gemport_id = %d, direction = %s\n", access_intf_id, onu_id, uni_id, gemport_id, direction.c_str());
- if (direction == downstream) {
- // In the downstream, the queues are on the 'sub term' scheduler
- // There is one queue per gem port
- key.sched_dir = BCMBAL_TM_SCHED_DIR_DS;
- key.sched_id = get_tm_sched_id(access_intf_id, onu_id, uni_id, direction);
- key.id = get_tm_queue_id(access_intf_id, onu_id, uni_id, gemport_id, direction);
+ bcmolt_tm_qmp_cfg tm_qmp_cfg;
+ bcmolt_tm_qmp_key tm_qmp_key;
+ bcmolt_arr_u8_8 pbits_to_tmq_id = {0};
- } else {
- queue_map_key_tuple map_key(access_intf_id, onu_id, uni_id, gemport_id, direction);
- if (queue_map.count(map_key) > 0) {
- BCM_LOG(INFO, openolt_log_id, "upstream queue exists for intf_id %d, onu_id %d, uni_id %d\n. Not re-creating", \
- access_intf_id, onu_id, uni_id);
- return BCM_ERR_OK;
- }
- key.sched_dir = BCMBAL_TM_SCHED_DIR_US;
- key.sched_id = get_default_tm_sched_id(nni_intf_id, direction);
- if (priority > 7) {
- return BCM_ERR_RANGE;
- }
- // There are 8 queues (one per p-bit)
- key.id = us_fixed_queue_id_list[priority];
- update_tm_queue_id(access_intf_id, onu_id, uni_id, gemport_id, direction, key.id);
- // FIXME: The upstream queues have to be created once only.
- // The upstream queues on the NNI scheduler are shared by all subscribers.
- // When the first scheduler comes in, the queues get created, and are re-used by all others.
- // Also, these queues should be present until the last subscriber exits the system.
- // One solution is to have these queues always, i.e., create it as soon as OLT is enabled.
+ int tm_qmp_id = get_tm_qmp_id(sched_id, intf_id, onu_id, uni_id, tmq_map_profile);
+ if (tm_qmp_id == -1) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to create tm queue mapping profile. Max allowed profile count is 16.\n");
}
- BCM_LOG(INFO, openolt_log_id, "queue assigned queue_id = %d\n", key.id);
- BCMBAL_CFG_INIT(&cfg, tm_queue, key);
+ tm_qmp_key.id = tm_qmp_id;
+ for (uint32_t priority=0; priority<tmq_map_profile.size(); priority++) {
+ pbits_to_tmq_id.arr[priority] = tmq_map_profile[priority];
+ }
- BCMBAL_CFG_PROP_SET(&cfg, tm_queue, priority, priority);
+ BCMOLT_CFG_INIT(&tm_qmp_cfg, tm_qmp, tm_qmp_key);
+ BCMOLT_MSG_FIELD_SET(&tm_qmp_cfg, type, BCMOLT_TM_QMP_TYPE_PBITS);
+ BCMOLT_MSG_FIELD_SET(&tm_qmp_cfg, pbits_to_tmq_id, pbits_to_tmq_id);
+ BCMOLT_MSG_FIELD_SET(&tm_qmp_cfg, ref_count, 0);
+ BCMOLT_MSG_FIELD_SET(&tm_qmp_cfg, state, BCMOLT_CONFIG_STATE_CONFIGURED);
- // BCMBAL_CFG_PROP_SET(&cfg, tm_queue, creation_mode, BCMBAL_TM_CREATION_MODE_MANUAL);
-
-
- err = bcmbal_cfg_set(DEFAULT_ATERM_ID, &cfg.hdr);
+ err = bcmolt_cfg_set(dev_id, &tm_qmp_cfg.hdr);
if (err) {
- BCM_LOG(ERROR, openolt_log_id, "Failed to create subscriber tm queue, direction = %s, id %d, sched_id %d, \
- intf_id %d, onu_id %d, uni_id %d\n", \
- direction.c_str(), key.id, key.sched_id, access_intf_id, onu_id, uni_id);
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to create tm queue mapping profile, id %d\n", \
+ tm_qmp_key.id);
return err;
}
- BCM_LOG(INFO, openolt_log_id, "Created tm_queue, direction %s, id %d, intf_id %d, onu_id %d, uni_id %d", \
- direction.c_str(), key.id, access_intf_id, onu_id, uni_id);
-
+ OPENOLT_LOG(INFO, openolt_log_id, "Create tm queue mapping profile success, id %d\n", \
+ tm_qmp_key.id);
return BCM_ERR_OK;
+}
+bcmos_errno RemoveTrafficQueueMappingProfile(uint32_t tm_qmp_id) {
+ bcmos_errno err;
+ bcmolt_tm_qmp_cfg tm_qmp_cfg;
+ bcmolt_tm_qmp_key tm_qmp_key;
+ tm_qmp_key.id = tm_qmp_id;
+
+ BCMOLT_CFG_INIT(&tm_qmp_cfg, tm_qmp, tm_qmp_key);
+ err = bcmolt_cfg_clear(dev_id, &tm_qmp_cfg.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to remove tm queue mapping profile, id %d\n", \
+ tm_qmp_key.id);
+ return err;
+ }
+
+ OPENOLT_LOG(INFO, openolt_log_id, "Remove tm queue mapping profile success, id %d\n", \
+ tm_qmp_key.id);
+ return BCM_ERR_OK;
+}
+
+bcmos_errno CreateDefaultQueue(uint32_t intf_id, const std::string direction) {
+ bcmos_errno err;
+
+ /* Create 4 Queues on given PON/NNI scheduler */
+ for (int queue_id = 0; queue_id < 4; queue_id++) {
+ bcmolt_tm_queue_cfg tm_queue_cfg;
+ bcmolt_tm_queue_key tm_queue_key = {};
+ tm_queue_key.sched_id = get_default_tm_sched_id(intf_id, direction);
+ tm_queue_key.id = queue_id;
+ if (qos_type == BCMOLT_EGRESS_QOS_TYPE_FIXED_QUEUE)
+ tm_queue_key.tm_q_set_id = BCMOLT_TM_QUEUE_SET_ID_QSET_NOT_USE;
+ else
+ tm_queue_key.tm_q_set_id = BCMOLT_TM_QUEUE_KEY_TM_Q_SET_ID_DEFAULT;
+
+ BCMOLT_CFG_INIT(&tm_queue_cfg, tm_queue, tm_queue_key);
+ BCMOLT_MSG_FIELD_SET(&tm_queue_cfg, tm_sched_param.type, BCMOLT_TM_SCHED_PARAM_TYPE_PRIORITY);
+ BCMOLT_MSG_FIELD_SET(&tm_queue_cfg, tm_sched_param.u.priority.priority, queue_id);
+
+ err = bcmolt_cfg_set(dev_id, &tm_queue_cfg.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to create %s tm queue, id %d, sched_id %d, tm_q_set_id %d\n", \
+ direction.c_str(), tm_queue_key.id, tm_queue_key.sched_id, tm_queue_key.tm_q_set_id);
+ return err;
+ }
+
+ OPENOLT_LOG(INFO, openolt_log_id, "Create %s tm_queue success, id %d, sched_id %d, tm_q_set_id %d\n", \
+ direction.c_str(), tm_queue_key.id, tm_queue_key.sched_id, tm_queue_key.tm_q_set_id);
+ }
+ return BCM_ERR_OK;
+}
+
+bcmos_errno CreateQueue(std::string direction, uint32_t access_intf_id, uint32_t onu_id, uint32_t uni_id, uint32_t priority,
+ uint32_t gemport_id) {
+ bcmos_errno err;
+ bcmolt_tm_queue_cfg cfg;
+ bcmolt_tm_queue_key key = { };
+ OPENOLT_LOG(INFO, openolt_log_id, "creating %s queue. access_intf_id = %d, onu_id = %d, uni_id = %d \
+gemport_id = %d\n", direction.c_str(), access_intf_id, onu_id, uni_id, gemport_id);
+
+ key.sched_id = (direction.compare(upstream) == 0) ? get_default_tm_sched_id(nni_intf_id, direction) : \
+ get_tm_sched_id(access_intf_id, onu_id, uni_id, direction);
+
+ if (priority > 7) {
+ return BCM_ERR_RANGE;
+ }
+
+ /* FIXME: The upstream queues have to be created once only.
+ The upstream queues on the NNI scheduler are shared by all subscribers.
+ When the first scheduler comes in, the queues get created, and are re-used by all others.
+ Also, these queues should be present until the last subscriber exits the system.
+ One solution is to have these queues always, i.e., create it as soon as OLT is enabled.
+
+ There is one queue per gem port and Queue ID is fetched based on priority_q configuration
+ for each GEM in TECH PROFILE */
+ key.id = queue_id_list[priority];
+
+ if (qos_type == BCMOLT_EGRESS_QOS_TYPE_FIXED_QUEUE) {
+ // Reset the Queue ID to 0, if it is fixed queue, i.e., there is only one queue for subscriber.
+ key.id = 0;
+ key.tm_q_set_id = BCMOLT_TM_QUEUE_SET_ID_QSET_NOT_USE;
+ }
+ else if (qos_type == BCMOLT_EGRESS_QOS_TYPE_PRIORITY_TO_QUEUE) {
+ key.tm_q_set_id = get_tm_qmp_id(key.sched_id, access_intf_id, onu_id, uni_id);
+ }
+ else {
+ key.tm_q_set_id = BCMOLT_TM_QUEUE_KEY_TM_Q_SET_ID_DEFAULT;
+ }
+
+ OPENOLT_LOG(INFO, openolt_log_id, "queue assigned queue_id = %d\n", key.id);
+
+ BCMOLT_CFG_INIT(&cfg, tm_queue, key);
+ BCMOLT_MSG_FIELD_SET(&cfg, tm_sched_param.u.priority.priority, priority);
+
+ err = bcmolt_cfg_set(dev_id, &cfg.hdr);
+ if (err) {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to create subscriber tm queue, direction = %s, id %d, \
+sched_id %d, tm_q_set_id %d, intf_id %d, onu_id %d, uni_id %d, err %d\n", \
+ direction.c_str(), key.id, key.sched_id, key.tm_q_set_id, access_intf_id, onu_id, uni_id, err);
+ return err;
+ }
+
+ OPENOLT_LOG(INFO, openolt_log_id, "Created tm_queue, direction %s, id %d, sched_id %d, tm_q_set_id %d, \
+intf_id %d, onu_id %d, uni_id %d\n", direction.c_str(), key.id, key.sched_id, key.tm_q_set_id, access_intf_id, onu_id, uni_id);
+ return BCM_ERR_OK;
}
Status CreateTrafficQueues_(const tech_profile::TrafficQueues *traffic_queues) {
uint32_t intf_id = traffic_queues->intf_id();
uint32_t onu_id = traffic_queues->onu_id();
uint32_t uni_id = traffic_queues->uni_id();
+ uint32_t sched_id;
std::string direction;
- unsigned int alloc_id;
bcmos_errno err;
+ qos_type = (traffic_queues->traffic_queues_size() > 1) ? \
+ BCMOLT_EGRESS_QOS_TYPE_PRIORITY_TO_QUEUE : BCMOLT_EGRESS_QOS_TYPE_FIXED_QUEUE;
+
+ if (qos_type == BCMOLT_EGRESS_QOS_TYPE_PRIORITY_TO_QUEUE) {
+ uint32_t queues_priority_q[traffic_queues->traffic_queues_size()] = {0};
+ std::string queues_pbit_map[traffic_queues->traffic_queues_size()];
+ for (int i = 0; i < traffic_queues->traffic_queues_size(); i++) {
+ tech_profile::TrafficQueue traffic_queue = traffic_queues->traffic_queues(i);
+
+ direction = GetDirection(traffic_queue.direction());
+ if (direction.compare("direction-not-supported") == 0)
+ return bcm_to_grpc_err(BCM_ERR_PARM, "direction-not-supported");
+
+ queues_priority_q[i] = traffic_queue.priority();
+ queues_pbit_map[i] = traffic_queue.pbit_map();
+ }
+
+ std::vector<uint32_t> tmq_map_profile(8, 0);
+ tmq_map_profile = get_tmq_map_profile(get_valid_queues_pbit_map(queues_pbit_map, COUNT_OF(queues_pbit_map)), \
+ queues_priority_q, COUNT_OF(queues_priority_q));
+ sched_id = (direction.compare(upstream) == 0) ? get_default_tm_sched_id(nni_intf_id, direction) : \
+ get_tm_sched_id(intf_id, onu_id, uni_id, direction);
+
+ int tm_qmp_id = get_tm_qmp_id(tmq_map_profile);
+ if (tm_qmp_id == -1) {
+ CreateTrafficQueueMappingProfile(sched_id, intf_id, onu_id, uni_id, direction, tmq_map_profile);
+ } else if (tm_qmp_id != -1 && get_tm_qmp_id(sched_id, intf_id, onu_id, uni_id) == -1) {
+ OPENOLT_LOG(INFO, openolt_log_id, "tm queue mapping profile present already with id %d\n", tm_qmp_id);
+ update_sched_qmp_id_map(sched_id, intf_id, onu_id, uni_id, tm_qmp_id);
+ }
+ }
+
for (int i = 0; i < traffic_queues->traffic_queues_size(); i++) {
tech_profile::TrafficQueue traffic_queue = traffic_queues->traffic_queues(i);
- if (traffic_queue.direction() == tech_profile::Direction::UPSTREAM) {
- direction = upstream;
- } else if (traffic_queue.direction() == tech_profile::Direction::DOWNSTREAM) {
- direction = downstream;
- }
- else {
- BCM_LOG(ERROR, openolt_log_id, "direction-not-supported %d", traffic_queue.direction());
- return Status::CANCELLED;
- }
+
+ direction = GetDirection(traffic_queue.direction());
+ if (direction.compare("direction-not-supported") == 0)
+ return bcm_to_grpc_err(BCM_ERR_PARM, "direction-not-supported");
+
err = CreateQueue(direction, intf_id, onu_id, uni_id, traffic_queue.priority(), traffic_queue.gemport_id());
+
// If the queue exists already, lets not return failure and break the loop.
if (err && err != BCM_ERR_ALREADY) {
return bcm_to_grpc_err(err, "Failed to create queue");
@@ -1568,41 +2716,49 @@
return Status::OK;
}
-
bcmos_errno RemoveQueue(std::string direction, uint32_t access_intf_id, uint32_t onu_id, uint32_t uni_id, uint32_t priority,
uint32_t gemport_id) {
- bcmbal_tm_queue_cfg queue_cfg;
- bcmbal_tm_queue_key queue_key = { };
+ bcmolt_tm_queue_cfg cfg;
+ bcmolt_tm_queue_key key = { };
bcmos_errno err;
if (direction == downstream) {
- queue_key.sched_dir = BCMBAL_TM_SCHED_DIR_DS;
- if (is_tm_queue_id_present(access_intf_id, onu_id, uni_id, gemport_id, direction) && \
- is_tm_sched_id_present(access_intf_id, onu_id, uni_id, direction)) {
- queue_key.sched_id = get_tm_sched_id(access_intf_id, onu_id, uni_id, direction);
- queue_key.id = get_tm_queue_id(access_intf_id, onu_id, uni_id, gemport_id, direction);
+ if (is_tm_sched_id_present(access_intf_id, onu_id, uni_id, direction)) {
+ key.sched_id = get_tm_sched_id(access_intf_id, onu_id, uni_id, direction);
+ key.id = queue_id_list[priority];
} else {
- BCM_LOG(INFO, openolt_log_id, "queue not present in DS. Not clearing");
+ OPENOLT_LOG(INFO, openolt_log_id, "queue not present in DS. Not clearing, access_intf_id %d, onu_id %d, uni_id %d, gemport_id %d, direction %s\n", access_intf_id, onu_id, uni_id, gemport_id, direction.c_str());
return BCM_ERR_OK;
}
} else {
- free_tm_queue_id(access_intf_id, onu_id, uni_id, gemport_id, direction);
- // In the upstream we use pre-created queues on the NNI scheduler that are used by all subscribers.
- // They should not be removed. So, lets return OK.
+ /* In the upstream we use pre-created queues on the NNI scheduler that are used by all subscribers.
+ They should not be removed. So, lets return OK. */
return BCM_ERR_OK;
}
- BCMBAL_CFG_INIT(&queue_cfg, tm_queue, queue_key);
+ if (qos_type == BCMOLT_EGRESS_QOS_TYPE_FIXED_QUEUE) {
+ key.tm_q_set_id = BCMOLT_TM_QUEUE_SET_ID_QSET_NOT_USE;
+ // Reset the queue id to 0 when using fixed queue.
+ key.id = 0;
+ }
+ else if (qos_type == BCMOLT_EGRESS_QOS_TYPE_PRIORITY_TO_QUEUE) {
+ key.tm_q_set_id = get_tm_qmp_id(key.sched_id, access_intf_id, onu_id, uni_id);
+ }
+ else {
+ key.tm_q_set_id = BCMOLT_TM_QUEUE_KEY_TM_Q_SET_ID_DEFAULT;
+ }
- err = bcmbal_cfg_clear(DEFAULT_ATERM_ID, &(queue_cfg.hdr));
-
+ BCMOLT_CFG_INIT(&cfg, tm_queue, key);
+ err = bcmolt_cfg_clear(dev_id, &(cfg.hdr));
if (err) {
- BCM_LOG(ERROR, openolt_log_id, "Failed to remove queue, direction = %s, id %d, sched_id %d, intf_id %d, onu_id %d, uni_id %d\n",
- direction.c_str(), queue_key.id, queue_key.sched_id, access_intf_id, onu_id, uni_id);
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to remove queue, direction = %s, id %d, sched_id %d, \
+tm_q_set_id %d, intf_id %d, onu_id %d, uni_id %d\n",
+ direction.c_str(), key.id, key.sched_id, key.tm_q_set_id, access_intf_id, onu_id, uni_id);
return err;
}
- free_tm_queue_id(access_intf_id, onu_id, uni_id, gemport_id, direction);
+ OPENOLT_LOG(INFO, openolt_log_id, "Removed tm_queue, direction %s, id %d, sched_id %d, tm_q_set_id %d, \
+intf_id %d, onu_id %d, uni_id %d\n", direction.c_str(), key.id, key.sched_id, key.tm_q_set_id, access_intf_id, onu_id, uni_id);
return BCM_ERR_OK;
}
@@ -1612,25 +2768,34 @@
uint32_t onu_id = traffic_queues->onu_id();
uint32_t uni_id = traffic_queues->uni_id();
uint32_t port_no = traffic_queues->port_no();
+ uint32_t sched_id;
std::string direction;
- unsigned int alloc_id;
bcmos_errno err;
+ qos_type = (traffic_queues->traffic_queues_size() > 1) ? \
+ BCMOLT_EGRESS_QOS_TYPE_PRIORITY_TO_QUEUE : BCMOLT_EGRESS_QOS_TYPE_FIXED_QUEUE;
+
for (int i = 0; i < traffic_queues->traffic_queues_size(); i++) {
tech_profile::TrafficQueue traffic_queue = traffic_queues->traffic_queues(i);
- if (traffic_queue.direction() == tech_profile::Direction::UPSTREAM) {
- direction = upstream;
- } else if (traffic_queue.direction() == tech_profile::Direction::DOWNSTREAM) {
- direction = downstream;
- } else {
- BCM_LOG(ERROR, openolt_log_id, "direction-not-supported %d", traffic_queue.direction());
- return Status::CANCELLED;
- }
+
+ direction = GetDirection(traffic_queue.direction());
+ if (direction.compare("direction-not-supported") == 0)
+ return bcm_to_grpc_err(BCM_ERR_PARM, "direction-not-supported");
+
err = RemoveQueue(direction, intf_id, onu_id, uni_id, traffic_queue.priority(), traffic_queue.gemport_id());
if (err) {
return bcm_to_grpc_err(err, "Failed to remove queue");
}
}
+ if (qos_type == BCMOLT_EGRESS_QOS_TYPE_PRIORITY_TO_QUEUE && (direction.compare(upstream) == 0 || direction.compare(downstream) == 0 && is_tm_sched_id_present(intf_id, onu_id, uni_id, direction))) {
+ sched_id = (direction.compare(upstream) == 0) ? get_default_tm_sched_id(nni_intf_id, direction) : \
+ get_tm_sched_id(intf_id, onu_id, uni_id, direction);
+
+ int tm_qmp_id = get_tm_qmp_id(sched_id, intf_id, onu_id, uni_id);
+ if (free_tm_qmp_id(sched_id, intf_id, onu_id, uni_id, tm_qmp_id)) {
+ RemoveTrafficQueueMappingProfile(tm_qmp_id);
+ }
+ }
return Status::OK;
}
diff --git a/agent/src/error_format.h b/agent/src/error_format.h
index 9736456..3928dc1 100644
--- a/agent/src/error_format.h
+++ b/agent/src/error_format.h
@@ -24,8 +24,7 @@
extern "C"
{
#include <bcmos_system.h>
-#include <bal_api.h>
-#include <bal_api_end.h>
+#include <bcmolt_api.h>
}
grpc::Status bcm_to_grpc_err(bcmos_errno bcm_err, std::string message);
diff --git a/agent/src/indications.cc b/agent/src/indications.cc
index 789702f..1826b77 100644
--- a/agent/src/indications.cc
+++ b/agent/src/indications.cc
@@ -26,8 +26,9 @@
extern "C"
{
#include <bcmos_system.h>
-#include <bal_api.h>
-#include <bal_api_end.h>
+#include <bcmolt_api.h>
+#include <bcmolt_host_api.h>
+#include <bcmolt_api_model_api_structs.h>
}
using grpc::Status;
@@ -38,20 +39,59 @@
bool subscribed = false;
uint32_t nni_intf_id = 0;
+#define current_device 0
-bcmos_errno OmciIndication(bcmbal_obj *obj);
+static void OmciIndication(bcmolt_devid olt, bcmolt_msg *msg);
-std::string bcmbal_to_grpc_intf_type(bcmbal_intf_type intf_type)
+#define INTERFACE_STATE_IF_DOWN(state) \
+ ((state == BCMOLT_INTERFACE_STATE_INACTIVE || \
+ state == BCMOLT_INTERFACE_STATE_PROCESSING || \
+ state == BCMOLT_INTERFACE_STATE_ACTIVE_STANDBY) ? BCMOS_TRUE : BCMOS_FALSE)
+#define INTERFACE_STATE_IF_UP(state) \
+ ((state == BCMOLT_INTERFACE_STATE_ACTIVE_WORKING) ? BCMOS_TRUE : BCMOS_FALSE)
+#define ONU_STATE_IF_DOWN(state) \
+ ((state == BCMOLT_ONU_OPERATION_INACTIVE || \
+ state == BCMOLT_ONU_OPERATION_DISABLE || \
+ state == BCMOLT_ONU_OPERATION_ACTIVE_STANDBY) ? BCMOS_TRUE : BCMOS_FALSE)
+#define ONU_STATE_IF_UP(state) \
+ ((state == BCMOLT_ONU_OPERATION_ACTIVE) ? BCMOS_TRUE : BCMOS_FALSE)
+#define ONU_RANGING_STATE_IF_UP(state) \
+ ((state == BCMOLT_RESULT_SUCCESS) ? BCMOS_TRUE : BCMOS_FALSE)
+#define ONU_RANGING_STATE_IF_DOWN(state) \
+ ((state != BCMOLT_RESULT_SUCCESS) ? BCMOS_TRUE : BCMOS_FALSE)
+#define SET_OPER_STATE(indication,state) \
+ (INTERFACE_STATE_IF_UP(state)) ? indication->set_oper_state("up") : \
+ indication->set_oper_state("down")
+#define GET_FLOW_TYPE(type) \
+ (type == BCMOLT_FLOW_TYPE_UPSTREAM) ? "upstream" : \
+ (type == BCMOLT_FLOW_TYPE_DOWNSTREAM) ? "downstream" : \
+ (type == BCMOLT_FLOW_TYPE_MULTICAST) ? "multicast" : "unknown"
+
+std::string bcmolt_to_grpc_intf_type(bcmolt_interface_type intf_type)
{
- if (intf_type == BCMBAL_INTF_TYPE_NNI) {
+ if (intf_type == BCMOLT_INTERFACE_TYPE_NNI) {
return "nni";
- } else if (intf_type == BCMBAL_INTF_TYPE_PON) {
+ } else if (intf_type == BCMOLT_INTERFACE_TYPE_PON) {
return "pon";
+ } else if (intf_type == BCMOLT_INTERFACE_TYPE_HOST) {
+ return "host";
}
return "unknown";
}
-std::string getOnuRegistrationId(uint32_t intf_id, uint32_t onu_id){
+std::string bcmolt_to_grpc_flow_intf_type(bcmolt_flow_interface_type intf_type)
+{
+ if (intf_type == BCMOLT_FLOW_INTERFACE_TYPE_NNI) {
+ return "nni";
+ } else if (intf_type == BCMOLT_FLOW_INTERFACE_TYPE_PON) {
+ return "pon";
+ } else if (intf_type == BCMOLT_FLOW_INTERFACE_TYPE_HOST) {
+ return "host";
+ }
+ return "unknown";
+}
+
+/*std::string getOnuRegistrationId(uint32_t intf_id, uint32_t onu_id){
bcmbal_subscriber_terminal_key key;
bcmbal_subscriber_terminal_cfg sub_term_obj = {};
uint8_t *list_mem;// to fetch config details for ONU
@@ -100,553 +140,658 @@
free(list_mem);
return reg_id;
-}
+}*/
-bcmos_errno OltOperIndication(bcmbal_obj *obj) {
+static void OltOperIndication(bcmolt_devid olt, bcmolt_msg *msg) {
openolt::Indication ind;
openolt::OltIndication* olt_ind = new openolt::OltIndication;
Status status;
-
- bcmbal_access_terminal_oper_status_change *acc_term_ind = (bcmbal_access_terminal_oper_status_change *)obj;
std::string admin_state;
- if (acc_term_ind->data.admin_state == BCMBAL_STATE_UP) {
- admin_state = "up";
- } else {
- admin_state = "down";
- }
- if (acc_term_ind->data.new_oper_status == BCMBAL_STATUS_UP) {
- // Determine device capabilities before transitionto acive state
- ProbeDeviceCapabilities_();
- olt_ind->set_oper_state("up");
- } else {
- olt_ind->set_oper_state("down");
+ switch (msg->subgroup) {
+ case BCMOLT_DEVICE_AUTO_SUBGROUP_CONNECTION_COMPLETE:
+ admin_state = "up";
+ olt_ind->set_oper_state("up");
+ break;
+ case BCMOLT_DEVICE_AUTO_SUBGROUP_DISCONNECTION_COMPLETE:
+ admin_state = "down";
+ olt_ind->set_oper_state("down");
+ break;
+ case BCMOLT_DEVICE_AUTO_SUBGROUP_CONNECTION_FAILURE:
+ admin_state = "failure";
+ olt_ind->set_oper_state("failure");
+ break;
}
ind.set_allocated_olt_ind(olt_ind);
- BCM_LOG(INFO, openolt_log_id, "Olt oper status indication, admin_state: %s oper_state: %s\n",
- admin_state.c_str(),
- olt_ind->oper_state().c_str());
-
- oltIndQ.push(ind);
-
- // Enable all PON interfaces.
- //
- for (int i = 0; i < NumPonIf_(); i++) {
- status = EnablePonIf_(i);
- if (!status.ok()) {
- // FIXME - raise alarm to report error in enabling PON
+ if (msg->subgroup == BCMOLT_DEVICE_AUTO_SUBGROUP_CONNECTION_COMPLETE) {
+ /* register for omci indication */
+ {
+ bcmolt_rx_cfg rx_cfg = {};
+ rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
+ rx_cfg.rx_cb = OmciIndication;
+ rx_cfg.subgroup = bcmolt_onu_auto_subgroup_omci_packet;
+ rx_cfg.module = BCMOS_MODULE_ID_OMCI_TRANSPORT;
+ bcmolt_ind_subscribe(current_device, &rx_cfg);
}
- }
-
- // Enable all NNI interfaces.
- //
- for (int i = 0; i < NumNniIf_(); i++) {
- status = EnableUplinkIf_(i);
- if (!status.ok()) {
- // FIXME - raise alarm to report error in enabling PON
- }
- }
-
- /* register for omci indication */
- {
- bcmbal_cb_cfg cb_cfg = {};
- uint16_t ind_subgroup;
-
- cb_cfg.module = BCMOS_MODULE_ID_NONE;
- cb_cfg.obj_type = BCMBAL_OBJ_ID_PACKET;
- ind_subgroup = BCMBAL_IND_SUBGROUP(packet, itu_omci_channel_rx);
- cb_cfg.p_object_key_info = NULL;
- cb_cfg.p_subgroup = &ind_subgroup;
- cb_cfg.ind_cb_hdlr = (f_bcmbal_ind_handler)OmciIndication;
- bcmbal_subscribe_ind(0, &cb_cfg);
- }
-
- if (acc_term_ind->data.new_oper_status == BCMBAL_STATUS_UP) {
- ProbePonIfTechnology_();
state.activate();
}
else {
state.deactivate();
}
- return BCM_ERR_OK;
+ oltIndQ.push(ind);
+ bcmolt_msg_free(msg);
}
-bcmos_errno LosIndication(bcmbal_obj *obj) {
+static void LosIndication(bcmolt_devid olt, bcmolt_msg *msg) {
openolt::Indication ind;
openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
openolt::LosIndication* los_ind = new openolt::LosIndication;
- bcmbal_interface_los* bcm_los_ind = (bcmbal_interface_los *) obj;
- int intf_id = interface_key_to_port_no(bcm_los_ind->key);
- std::string status = alarm_status_to_string(bcm_los_ind->data.status);
+ switch (msg->obj_type) {
+ case BCMOLT_OBJ_ID_PON_INTERFACE:
+ switch (msg->subgroup) {
+ case BCMOLT_PON_INTERFACE_AUTO_SUBGROUP_LOS:
+ {
+ bcmolt_pon_interface_los* bcm_los_ind = (bcmolt_pon_interface_los *) msg;
+ int intf_id = interface_key_to_port_no(bcm_los_ind->key.pon_ni,
+ BCMOLT_INTERFACE_TYPE_PON);
+ std::string status = alarm_status_to_string(bcm_los_ind->data.status);
- BCM_LOG(INFO, openolt_log_id, "LOS indication : intf_type: %d intf_id: %d port: %d status %s\n",
- bcm_los_ind->key.intf_type, bcm_los_ind->key.intf_id, intf_id, status.c_str());
+ OPENOLT_LOG(INFO, openolt_log_id, "LOS indication : intf_id: %d port: %d status %s\n",
+ bcm_los_ind->key.pon_ni, intf_id, status.c_str());
- los_ind->set_intf_id(intf_id);
- los_ind->set_status(status);
+ los_ind->set_intf_id(intf_id);
+ los_ind->set_status(status);
- alarm_ind->set_allocated_los_ind(los_ind);
- ind.set_allocated_alarm_ind(alarm_ind);
+ alarm_ind->set_allocated_los_ind(los_ind);
+ ind.set_allocated_alarm_ind(alarm_ind);
+ break;
+ }
+ }
+ }
oltIndQ.push(ind);
- return BCM_ERR_OK;
+ bcmolt_msg_free(msg);
}
-bcmos_errno IfIndication(bcmbal_obj *obj) {
+static void IfIndication(bcmolt_devid olt, bcmolt_msg *msg) {
openolt::Indication ind;
openolt::IntfIndication* intf_ind = new openolt::IntfIndication;
- BCM_LOG(INFO, openolt_log_id, "intf indication, intf_id: %d\n",
- ((bcmbal_interface_oper_status_change *)obj)->key.intf_id );
+ switch (msg->obj_type) {
+ case BCMOLT_OBJ_ID_PON_INTERFACE:
+ switch (msg->subgroup) {
+ case BCMOLT_PON_INTERFACE_AUTO_SUBGROUP_STATE_CHANGE_COMPLETED:
+ {
+ bcmolt_pon_interface_key *key =
+ &((bcmolt_pon_interface_state_change_completed*)msg)->key;
+ bcmolt_pon_interface_state_change_completed_data *data =
+ &((bcmolt_pon_interface_state_change_completed*)msg)->data;
- intf_ind->set_intf_id(((bcmbal_interface_oper_status_change *)obj)->key.intf_id);
- if (((bcmbal_interface_oper_status_change *)obj)->data.new_oper_status == BCMBAL_STATUS_UP) {
- intf_ind->set_oper_state("up");
- } else {
- intf_ind->set_oper_state("down");
+ intf_ind->set_intf_id(key->pon_ni);
+ SET_OPER_STATE(intf_ind, data->new_state);
+ ind.set_allocated_intf_ind(intf_ind);
+ break;
+ }
+ }
+ break;
+ case BCMOLT_OBJ_ID_NNI_INTERFACE:
+ switch (msg->subgroup) {
+ case BCMOLT_NNI_INTERFACE_AUTO_SUBGROUP_STATE_CHANGE:
+ {
+ OPENOLT_LOG(INFO, openolt_log_id, "intf indication, intf_id: %d\n",
+ ((bcmolt_nni_interface_state_change *)msg)->key.id);
+ bcmolt_nni_interface_key *key =
+ &((bcmolt_nni_interface_state_change *)msg)->key;
+ bcmolt_nni_interface_state_change_data *data =
+ &((bcmolt_nni_interface_state_change *)msg)->data;
+
+ intf_ind->set_intf_id(key->id);
+ SET_OPER_STATE(intf_ind, data->new_state);
+ ind.set_allocated_intf_ind(intf_ind);
+ break;
+ }
+ }
}
- ind.set_allocated_intf_ind(intf_ind);
oltIndQ.push(ind);
-
- return BCM_ERR_OK;
+ bcmolt_msg_free(msg);
}
-bcmos_errno IfOperIndication(bcmbal_obj *obj) {
+static void IfOperIndication(bcmolt_devid olt, bcmolt_msg *msg) {
openolt::Indication ind;
openolt::IntfOperIndication* intf_oper_ind = new openolt::IntfOperIndication;
- bcmbal_interface_oper_status_change* bcm_if_oper_ind = (bcmbal_interface_oper_status_change *) obj;
- intf_oper_ind->set_type(bcmbal_to_grpc_intf_type(bcm_if_oper_ind->key.intf_type));
- intf_oper_ind->set_intf_id(bcm_if_oper_ind->key.intf_id);
-
- if (bcm_if_oper_ind->data.new_oper_status == BCMBAL_STATUS_UP) {
- intf_oper_ind->set_oper_state("up");
- if (bcm_if_oper_ind->key.intf_type == BCMBAL_INTF_TYPE_NNI) {
- nni_intf_id = bcm_if_oper_ind->key.intf_id;
- }
- } else {
- intf_oper_ind->set_oper_state("down");
+ switch (msg->obj_type) {
+ case BCMOLT_OBJ_ID_PON_INTERFACE:
+ switch (msg->subgroup) {
+ case BCMOLT_PON_INTERFACE_AUTO_SUBGROUP_STATE_CHANGE_COMPLETED:
+ {
+ bcmolt_pon_interface_key *key = &((bcmolt_pon_interface_state_change_completed*)msg)->key;
+ bcmolt_pon_interface_state_change_completed_data *data = &((bcmolt_pon_interface_state_change_completed*)msg)->data;
+ intf_oper_ind->set_intf_id(key->pon_ni);
+ intf_oper_ind->set_type(bcmolt_to_grpc_intf_type(BCMOLT_INTERFACE_TYPE_PON));
+ SET_OPER_STATE(intf_oper_ind, data->new_state);
+ OPENOLT_LOG(INFO, openolt_log_id, "intf oper state indication, intf_type %s, intf_id %d, oper_state %s\n",
+ intf_oper_ind->type().c_str(), key->pon_ni, intf_oper_ind->oper_state().c_str());
+ ind.set_allocated_intf_oper_ind(intf_oper_ind);
+ break;
+ }
+ }
+ case BCMOLT_OBJ_ID_NNI_INTERFACE:
+ switch (msg->subgroup) {
+ case BCMOLT_NNI_INTERFACE_AUTO_SUBGROUP_STATE_CHANGE:
+ {
+ bcmolt_nni_interface_key *key = &((bcmolt_nni_interface_state_change *)msg)->key;
+ bcmolt_nni_interface_state_change_data *data = &((bcmolt_nni_interface_state_change *)msg)->data;
+ bcmolt_interface intf_id = key->id;
+ bcmolt_interface_type intf_type = BCMOLT_INTERFACE_TYPE_NNI;
+ intf_oper_ind->set_intf_id(key->id);
+ intf_oper_ind->set_type(bcmolt_to_grpc_intf_type(BCMOLT_INTERFACE_TYPE_NNI));
+ SET_OPER_STATE(intf_oper_ind, data->new_state);
+ OPENOLT_LOG(INFO, openolt_log_id, "intf oper state indication, intf_type %s, intf_id %d, oper_state %s\n",
+ intf_oper_ind->type().c_str(), key->id, intf_oper_ind->oper_state().c_str());
+ ind.set_allocated_intf_oper_ind(intf_oper_ind);
+ break;
+ }
+ }
}
- BCM_LOG(INFO, openolt_log_id, "intf oper state indication, intf_type %s, intf_id %d, oper_state %s, admin_state %d\n",
- intf_oper_ind->type().c_str(),
- bcm_if_oper_ind->key.intf_id,
- intf_oper_ind->oper_state().c_str(),
- bcm_if_oper_ind->data.admin_state);
-
- ind.set_allocated_intf_oper_ind(intf_oper_ind);
-
oltIndQ.push(ind);
- return BCM_ERR_OK;
+ bcmolt_msg_free(msg);
}
-bcmos_errno OnuAlarmIndication(bcmbal_obj *obj) {
+static void OnuAlarmIndication(bcmolt_devid olt, bcmolt_msg *msg) {
openolt::Indication ind;
openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
openolt::OnuAlarmIndication* onu_alarm_ind = new openolt::OnuAlarmIndication;
- bcmbal_subscriber_terminal_key *key =
- &((bcmbal_subscriber_terminal_sub_term_alarm*)obj)->key;
+ switch (msg->obj_type) {
+ case BCMOLT_OBJ_ID_ONU:
+ switch (msg->subgroup) {
+ case BCMOLT_ONU_AUTO_SUBGROUP_XGPON_ALARM:
+ {
+ bcmolt_xgpon_onu_alarms *onu_alarms =
+ &((bcmolt_onu_xgpon_alarm_data *)msg)->xgpon_onu_alarm;
+ onu_alarm_ind->set_los_status(alarm_status_to_string(onu_alarms->losi));
+ onu_alarm_ind->set_lob_status(alarm_status_to_string(onu_alarms->lobi));
+ onu_alarm_ind->set_lopc_miss_status(alarm_status_to_string(
+ onu_alarms->lopci_miss));
+ onu_alarm_ind->set_lopc_mic_error_status(alarm_status_to_string(
+ onu_alarms->lopci_mic_error));
- bcmbal_subscriber_terminal_alarms *alarms =
- &(((bcmbal_subscriber_terminal_sub_term_alarm*)obj)->data.alarm);
-
- BCM_LOG(WARNING, openolt_log_id, "onu alarm indication intf_id %d, onu_id %d, alarm: los %d, lob %d, lopc_miss %d, lopc_mic_error %d\n",
- key->intf_id, key->sub_term_id, alarms->los, alarms->lob, alarms->lopc_miss, alarms->lopc_mic_error);
-
- onu_alarm_ind->set_intf_id(key->intf_id);
- onu_alarm_ind->set_onu_id(key->sub_term_id);
- onu_alarm_ind->set_los_status(alarm_status_to_string(alarms->los));
- onu_alarm_ind->set_lob_status(alarm_status_to_string(alarms->lob));
- onu_alarm_ind->set_lopc_miss_status(alarm_status_to_string(alarms->lopc_miss));
- onu_alarm_ind->set_lopc_mic_error_status(alarm_status_to_string(alarms->lopc_mic_error));
-
- alarm_ind->set_allocated_onu_alarm_ind(onu_alarm_ind);
- ind.set_allocated_alarm_ind(alarm_ind);
+ alarm_ind->set_allocated_onu_alarm_ind(onu_alarm_ind);
+ ind.set_allocated_alarm_ind(alarm_ind);
+ break;
+ }
+ case BCMOLT_ONU_AUTO_SUBGROUP_GPON_ALARM:
+ {
+ bcmolt_gpon_onu_alarms *onu_alarms =
+ &((bcmolt_onu_gpon_alarm_data *)msg)->gpon_onu_alarm;
+ onu_alarm_ind->set_los_status(alarm_status_to_string(onu_alarms->losi));
+ /* TODO: need to set lofi and loami
+ onu_alarm_ind->set_lof_status(alarm_status_to_string(onu_alarms->lofi));
+ onu_alarm_ind->set_loami_status(alarm_status_to_string(
+ onu_alarms->loami));
+ */
+ alarm_ind->set_allocated_onu_alarm_ind(onu_alarm_ind);
+ ind.set_allocated_alarm_ind(alarm_ind);
+ break;
+ }
+ }
+ }
oltIndQ.push(ind);
- return BCM_ERR_OK;
+ bcmolt_msg_free(msg);
}
-bcmos_errno OnuDyingGaspIndication(bcmbal_obj *obj) {
+static void OnuDyingGaspIndication(bcmolt_devid olt, bcmolt_msg *msg) {
openolt::Indication ind;
openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
- openolt::DyingGaspIndication* dg_ind = new openolt::DyingGaspIndication;
+ openolt::DyingGaspIndication* dgi_ind = new openolt::DyingGaspIndication;
- bcmbal_subscriber_terminal_key *key =
- &(((bcmbal_subscriber_terminal_dgi*)obj)->key);
+ switch (msg->obj_type) {
+ case BCMOLT_OBJ_ID_ONU:
+ switch (msg->subgroup) {
+ case BCMOLT_ONU_AUTO_SUBGROUP_DGI:
+ {
+ bcmolt_onu_dgi_data* dgi_data = (bcmolt_onu_dgi_data *)msg;
+ dgi_ind->set_status(alarm_status_to_string(dgi_data->alarm_status));
- bcmbal_subscriber_terminal_dgi_data *data =
- &(((bcmbal_subscriber_terminal_dgi*)obj)->data);
-
-
- BCM_LOG(WARNING, openolt_log_id, "onu dying-gasp indication, intf_id %d, onu_id %d, alarm %d\n",
- key->intf_id, key->sub_term_id, data->dgi_status);
-
- dg_ind->set_intf_id(key->intf_id);
- dg_ind->set_onu_id(key->sub_term_id);
- dg_ind->set_status(alarm_status_to_string(data->dgi_status));
-
- alarm_ind->set_allocated_dying_gasp_ind(dg_ind);
- ind.set_allocated_alarm_ind(alarm_ind);
+ alarm_ind->set_allocated_dying_gasp_ind(dgi_ind);
+ ind.set_allocated_alarm_ind(alarm_ind);
+ break;
+ }
+ }
+ }
oltIndQ.push(ind);
- return BCM_ERR_OK;
+ bcmolt_msg_free(msg);
}
-bcmos_errno OnuDiscoveryIndication(bcmbal_cfg *obj) {
+static void OnuDiscoveryIndication(bcmolt_devid olt, bcmolt_msg *msg) {
openolt::Indication ind;
openolt::OnuDiscIndication* onu_disc_ind = new openolt::OnuDiscIndication;
openolt::SerialNumber* serial_number = new openolt::SerialNumber;
- bcmbal_subscriber_terminal_key *key =
- &(((bcmbal_subscriber_terminal_sub_term_disc*)obj)->key);
+ switch (msg->obj_type) {
+ case BCMOLT_OBJ_ID_PON_INTERFACE:
+ switch (msg->subgroup) {
+ case BCMOLT_PON_INTERFACE_AUTO_SUBGROUP_ONU_DISCOVERED:
+ {
+ bcmolt_pon_interface_key *key =
+ &((bcmolt_pon_interface_onu_discovered *)msg)->key;
- bcmbal_subscriber_terminal_sub_term_disc_data *data =
- &(((bcmbal_subscriber_terminal_sub_term_disc*)obj)->data);
+ bcmolt_pon_interface_onu_discovered_data *data =
+ &((bcmolt_pon_interface_onu_discovered *)msg)->data;
- bcmbal_serial_number *in_serial_number = &(data->serial_number);
+ bcmolt_serial_number *in_serial_number = &(data->serial_number);
- BCM_LOG(INFO, openolt_log_id, "onu discover indication, intf_id %d, serial_number %s\n",
- key->intf_id, serial_number_to_str(in_serial_number).c_str());
+ OPENOLT_LOG(INFO, openolt_log_id, "onu discover indication, pon_ni %d, serial_number %s\n",
+ key->pon_ni, serial_number_to_str(in_serial_number).c_str());
- onu_disc_ind->set_intf_id(key->intf_id);
- serial_number->set_vendor_id(reinterpret_cast<const char *>(in_serial_number->vendor_id), 4);
- serial_number->set_vendor_specific(reinterpret_cast<const char *>(in_serial_number->vendor_specific), 8);
- onu_disc_ind->set_allocated_serial_number(serial_number);
- ind.set_allocated_onu_disc_ind(onu_disc_ind);
+ onu_disc_ind->set_intf_id(key->pon_ni);
+ serial_number->set_vendor_id(reinterpret_cast<const char *>(in_serial_number->vendor_id.arr), 4);
+ serial_number->set_vendor_specific(reinterpret_cast<const char *>(in_serial_number->vendor_specific.arr), 8);
+ onu_disc_ind->set_allocated_serial_number(serial_number);
+ ind.set_allocated_onu_disc_ind(onu_disc_ind);
+ break;
+ }
+ }
+ }
oltIndQ.push(ind);
-
- return BCM_ERR_OK;
+ bcmolt_msg_free(msg);
}
-bcmos_errno OnuIndication(bcmbal_obj *obj) {
+static void OnuIndication(bcmolt_devid olt, bcmolt_msg *msg) {
openolt::Indication ind;
openolt::OnuIndication* onu_ind = new openolt::OnuIndication;
- bcmbal_subscriber_terminal_key *key =
- &(((bcmbal_subscriber_terminal_oper_status_change*)obj)->key);
+ switch (msg->obj_type) {
+ case BCMOLT_OBJ_ID_ONU:
+ switch (msg->subgroup) {
+ case BCMOLT_ONU_AUTO_SUBGROUP_RANGING_COMPLETED:
+ {
+ bcmolt_onu_key *key = &((bcmolt_onu_ranging_completed*)msg)->key;
+ bcmolt_onu_ranging_completed_data *data = &((bcmolt_onu_ranging_completed*)msg)->data;
- bcmbal_subscriber_terminal_oper_status_change_data *data =
- &(((bcmbal_subscriber_terminal_oper_status_change*)obj)->data);
-
- BCM_LOG(INFO, openolt_log_id, "onu indication, intf_id %d, onu_id %d, oper_state %d, admin_state %d\n",
- key->intf_id, key->sub_term_id, data->new_oper_status, data->admin_state);
-
- onu_ind->set_intf_id(key->intf_id);
- onu_ind->set_onu_id(key->sub_term_id);
- if (data->new_oper_status == BCMBAL_STATUS_UP) {
- onu_ind->set_oper_state("up");
- } else {
- onu_ind->set_oper_state("down");
+ onu_ind->set_intf_id(key->pon_ni);
+ onu_ind->set_onu_id(key->onu_id);
+ if (ONU_RANGING_STATE_IF_UP(data->status))
+ onu_ind->set_oper_state("up");
+ if (ONU_RANGING_STATE_IF_DOWN(data->status))
+ onu_ind->set_oper_state("down");
+ (key->onu_id)?onu_ind->set_admin_state("up"):onu_ind->set_admin_state("down");
+ ind.set_allocated_onu_ind(onu_ind);
+ OPENOLT_LOG(INFO, openolt_log_id, "onu indication, pon_ni %d, onu_id %d, onu_state %s, onu_admin %s\n",
+ key->pon_ni, key->onu_id, (data->status==BCMOLT_RESULT_SUCCESS)?"up":"down",
+ (key->onu_id)?"up":"down");
+ }
+ }
}
- if (data->admin_state == BCMBAL_STATE_UP) {
- onu_ind->set_admin_state("up");
- } else {
- onu_ind->set_admin_state("down");
- }
- const std::string reg_id = getOnuRegistrationId(key->intf_id,key->sub_term_id);
+ /*const std::string reg_id = getOnuRegistrationId(key->intf_id,key->sub_term_id);
onu_ind->set_registration_id(reg_id);
BCM_LOG(INFO, openolt_log_id, "onu indication, intf_id %d, onu_id %d, oper state %s, admin_state %s,registration id %s\n",
- onu_ind->intf_id(), onu_ind->onu_id(),onu_ind->oper_state().c_str(), onu_ind->admin_state().c_str(),onu_ind->registration_id().c_str());
-
- ind.set_allocated_onu_ind(onu_ind);
+ onu_ind->intf_id(), onu_ind->onu_id(),onu_ind->oper_state().c_str(), onu_ind->admin_state().c_str(),onu_ind->registration_id().c_str());*/
oltIndQ.push(ind);
- return BCM_ERR_OK;
+ bcmolt_msg_free(msg);
}
-bcmos_errno OnuOperIndication(bcmbal_obj *obj) {
+static void OnuOperIndication(bcmolt_devid olt, bcmolt_msg *msg) {
openolt::Indication ind;
openolt::OnuIndication* onu_ind = new openolt::OnuIndication;
- bcmbal_subscriber_terminal_key *key =
- &(((bcmbal_subscriber_terminal_oper_status_change*)obj)->key);
+ switch (msg->obj_type) {
+ case BCMOLT_OBJ_ID_ONU:
+ switch (msg->subgroup) {
+ case BCMOLT_ONU_AUTO_SUBGROUP_STATE_CHANGE:
+ {
+ bcmolt_onu_key *key = &((bcmolt_onu_state_change*)msg)->key;
+ bcmolt_onu_state_change_data *data = &((bcmolt_onu_state_change*)msg)->data;
- bcmbal_subscriber_terminal_oper_status_change_data *data =
- &(((bcmbal_subscriber_terminal_oper_status_change*)obj)->data);
+ onu_ind->set_intf_id(key->pon_ni);
+ onu_ind->set_onu_id(key->onu_id);
+ if (ONU_STATE_IF_UP(data->new_onu_state))
+ onu_ind->set_oper_state("up");
+ if (ONU_STATE_IF_DOWN(data->new_onu_state))
+ onu_ind->set_oper_state("down");
+ ind.set_allocated_onu_ind(onu_ind);
- onu_ind->set_intf_id(key->intf_id);
- onu_ind->set_onu_id(key->sub_term_id);
- if (data->new_oper_status == BCMBAL_STATUS_UP) {
- onu_ind->set_oper_state("up");
- } else {
- onu_ind->set_oper_state("down");
+ OPENOLT_LOG(INFO, openolt_log_id, "onu oper state indication, intf_id %d, onu_id %d, old oper state %d, new oper state %s\n",
+ key->pon_ni, key->onu_id, data->new_onu_state, onu_ind->oper_state().c_str());
+ }
+ }
}
- if (data->admin_state == BCMBAL_STATE_UP) {
- onu_ind->set_admin_state("up");
- } else {
- onu_ind->set_admin_state("down");
- }
- const std::string reg_id = getOnuRegistrationId(key->intf_id,key->sub_term_id);
+ /*const std::string reg_id = getOnuRegistrationId(key->intf_id,key->sub_term_id);
onu_ind->set_registration_id(reg_id);
ind.set_allocated_onu_ind(onu_ind);
BCM_LOG(INFO, openolt_log_id, "onu oper state indication, intf_id %d, onu_id %d, old oper state %d, new oper state %s, admin_state %s registraion_id %s\n",
- key->intf_id, key->sub_term_id, data->old_oper_status, onu_ind->oper_state().c_str(), onu_ind->admin_state().c_str(),onu_ind->registration_id().c_str());
+ key->intf_id, key->sub_term_id, data->old_oper_status, onu_ind->oper_state().c_str(), onu_ind->admin_state().c_str(),onu_ind->registration_id().c_str());*/
oltIndQ.push(ind);
- return BCM_ERR_OK;
+ bcmolt_msg_free(msg);
}
-bcmos_errno OmciIndication(bcmbal_obj *obj) {
+static void OmciIndication(bcmolt_devid olt, bcmolt_msg *msg) {
openolt::Indication ind;
openolt::OmciIndication* omci_ind = new openolt::OmciIndication;
- bcmbal_packet_itu_omci_channel_rx *in =
- (bcmbal_packet_itu_omci_channel_rx *)obj;
- BCM_LOG(DEBUG, omci_log_id, "OMCI indication: intf_id %d, onu_id %d\n",
- in->key.packet_send_dest.u.itu_omci_channel.intf_id,
- in->key.packet_send_dest.u.itu_omci_channel.sub_term_id);
+ switch (msg->obj_type) {
+ case BCMOLT_OBJ_ID_ONU:
+ switch (msg->subgroup) {
+ case BCMOLT_ONU_AUTO_SUBGROUP_OMCI_PACKET:
+ {
+ bcmolt_onu_key *key = &((bcmolt_onu_omci_packet*)msg)->key;
+ bcmolt_onu_omci_packet_data *data = &((bcmolt_onu_omci_packet*)msg)->data;
- omci_ind->set_intf_id(in->key.packet_send_dest.u.itu_omci_channel.intf_id);
- omci_ind->set_onu_id(in->key.packet_send_dest.u.itu_omci_channel.sub_term_id);
- omci_ind->set_pkt(in->data.pkt.val, in->data.pkt.len);
+ OPENOLT_LOG(DEBUG, omci_log_id, "OMCI indication: pon_ni %d, onu_id %d\n",
+ key->pon_ni, key->onu_id);
- ind.set_allocated_omci_ind(omci_ind);
+ omci_ind->set_intf_id(key->pon_ni);
+ omci_ind->set_onu_id(key->onu_id);
+ omci_ind->set_pkt(data->buffer.arr, data->buffer.len);
+
+ ind.set_allocated_omci_ind(omci_ind);
+ break;
+ }
+ }
+ }
+
oltIndQ.push(ind);
-
- return BCM_ERR_OK;
+ bcmolt_msg_free(msg);
}
-bcmos_errno PacketIndication(bcmbal_obj *obj) {
+static void PacketIndication(bcmolt_devid olt, bcmolt_msg *msg) {
openolt::Indication ind;
openolt::PacketIndication* pkt_ind = new openolt::PacketIndication;
- bcmbal_packet_bearer_channel_rx *in = (bcmbal_packet_bearer_channel_rx *)obj;
- uint32_t port_no = GetPortNum_(in->data.flow_id);
- pkt_ind->set_intf_type(bcmbal_to_grpc_intf_type(in->data.intf_type));
- pkt_ind->set_intf_id(in->data.intf_id);
- pkt_ind->set_gemport_id(in->data.svc_port);
- pkt_ind->set_flow_id(in->data.flow_id);
- pkt_ind->set_pkt(in->data.pkt.val, in->data.pkt.len);
- pkt_ind->set_port_no(port_no);
- pkt_ind->set_cookie(in->data.flow_cookie);
+ switch (msg->obj_type) {
+ case BCMOLT_OBJ_ID_FLOW:
+ switch (msg->subgroup) {
+ case BCMOLT_FLOW_AUTO_SUBGROUP_RECEIVE_ETH_PACKET:
+ {
+ bcmolt_flow_receive_eth_packet *pkt =
+ (bcmolt_flow_receive_eth_packet*)msg;
+ bcmolt_flow_receive_eth_packet_data *pkt_data =
+ &((bcmolt_flow_receive_eth_packet*)msg)->data;
- ind.set_allocated_pkt_ind(pkt_ind);
+ uint32_t port_no = GetPortNum_(pkt->key.flow_id);
+ pkt_ind->set_intf_type(bcmolt_to_grpc_flow_intf_type((bcmolt_flow_interface_type)get_flow_status(pkt->key.flow_id, pkt->key.flow_type, INGRESS_INTF_TYPE)));
+ pkt_ind->set_intf_id(get_flow_status(pkt->key.flow_id, pkt->key.flow_type, INGRESS_INTF_ID));
+ pkt_ind->set_gemport_id(get_flow_status(pkt->key.flow_id, pkt->key.flow_type, SVC_PORT_ID));
+ pkt_ind->set_flow_id(pkt->key.flow_id);
+ pkt_ind->set_pkt(pkt_data->buffer.arr, pkt_data->buffer.len);
+ pkt_ind->set_port_no(port_no);
+ pkt_ind->set_cookie(get_flow_status(pkt->key.flow_id, pkt->key.flow_type, COOKIE));
+ ind.set_allocated_pkt_ind(pkt_ind);
- BCM_LOG(INFO, openolt_log_id, "packet indication, intf_type %s, intf_id %d, svc_port %d, flow_id %d port_no %d cookie %llu\n",
- pkt_ind->intf_type().c_str(), in->data.intf_id, in->data.svc_port, in->data.flow_id, port_no, in->data.flow_cookie);
+ OPENOLT_LOG(INFO, openolt_log_id, "packet indication, ingress intf_type %s, ingress intf_id %d, egress intf_type %s, egress intf_id %lu, svc_port %d, flow_type %s, flow_id %d, port_no %d, cookie %"PRIu64"\n",
+ pkt_ind->intf_type().c_str(), pkt_ind->intf_id(),
+ bcmolt_to_grpc_flow_intf_type((bcmolt_flow_interface_type)get_flow_status(pkt->key.flow_id, pkt->key.flow_type, EGRESS_INTF_TYPE)).c_str(),
+ get_flow_status(pkt->key.flow_id, pkt->key.flow_type, EGRESS_INTF_ID),
+ pkt_ind->gemport_id(), GET_FLOW_TYPE(pkt->key.flow_type),
+ pkt_ind->flow_id(), port_no, pkt_ind->cookie());
+ }
+ }
+ }
oltIndQ.push(ind);
-
- return BCM_ERR_OK;
+ bcmolt_msg_free(msg);
}
-bcmos_errno FlowOperIndication(bcmbal_obj *obj) {
+static void FlowOperIndication(bcmolt_devid olt, bcmolt_msg *msg) {
openolt::Indication ind;
- BCM_LOG(DEBUG, openolt_log_id, "flow oper state indication\n");
- return BCM_ERR_OK;
+ OPENOLT_LOG(DEBUG, openolt_log_id, "flow oper state indication\n");
+ bcmolt_msg_free(msg);
}
-bcmos_errno FlowIndication(bcmbal_obj *obj) {
+static void FlowIndication(bcmolt_devid olt, bcmolt_msg *msg) {
openolt::Indication ind;
- BCM_LOG(DEBUG, openolt_log_id, "flow indication\n");
- return BCM_ERR_OK;
+ OPENOLT_LOG(DEBUG, openolt_log_id, "flow indication\n");
+ bcmolt_msg_free(msg);
}
-bcmos_errno TmQIndication(bcmbal_obj *obj) {
+static void TmQIndication(bcmolt_devid olt, bcmolt_msg *msg) {
openolt::Indication ind;
- BCM_LOG(DEBUG, openolt_log_id, "traffic mgmt queue indication\n");
- return BCM_ERR_OK;
+ OPENOLT_LOG(DEBUG, openolt_log_id, "traffic mgmt queue indication\n");
+ bcmolt_msg_free(msg);
}
-bcmos_errno TmSchedIndication(bcmbal_obj *obj) {
+static void TmSchedIndication(bcmolt_devid olt, bcmolt_msg *msg) {
openolt::Indication ind;
- BCM_LOG(DEBUG, openolt_log_id, "traffic mgmt sheduler indication\n");
- return BCM_ERR_OK;
+ OPENOLT_LOG(DEBUG, openolt_log_id, "traffic mgmt sheduler indication\n");
+ bcmolt_msg_free(msg);
}
-bcmos_errno McastGroupIndication(bcmbal_obj *obj) {
+static void McastGroupIndication(bcmolt_devid olt, bcmolt_msg *msg) {
openolt::Indication ind;
- BCM_LOG(DEBUG, openolt_log_id, "mcast group indication\n");
- return BCM_ERR_OK;
+ OPENOLT_LOG(DEBUG, openolt_log_id, "mcast group indication\n");
+ bcmolt_msg_free(msg);
}
-bcmos_errno OnuStartupFailureIndication(bcmbal_obj *obj) {
+static void OnuStartupFailureIndication(bcmolt_devid olt, bcmolt_msg *msg) {
openolt::Indication ind;
openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
openolt::OnuStartupFailureIndication* sufi_ind = new openolt::OnuStartupFailureIndication;
- bcmbal_subscriber_terminal_key *key =
- &(((bcmbal_subscriber_terminal_sufi*)obj)->key);
+ switch (msg->obj_type) {
+ case BCMOLT_OBJ_ID_ONU:
+ switch (msg->subgroup) {
+ case BCMOLT_ONU_AUTO_SUBGROUP_SUFI:
+ {
+ bcmolt_onu_key *key = &((bcmolt_onu_sufi*)msg)->key;
+ bcmolt_onu_sufi_data *data = &((bcmolt_onu_sufi*)msg)->data;
- bcmbal_subscriber_terminal_sufi_data *data =
- &(((bcmbal_subscriber_terminal_sufi*)obj)->data);
+ OPENOLT_LOG(WARNING, openolt_log_id, "onu startup failure indication, intf_id %d, onu_id %d, alarm %d\n",
+ key->pon_ni, key->onu_id, data->alarm_status);
- BCM_LOG(WARNING, openolt_log_id, "onu startup failure indication, intf_id %d, onu_id %d, alarm %d\n",
- key->intf_id, key->sub_term_id, data->sufi_status);
+ sufi_ind->set_intf_id(key->pon_ni);
+ sufi_ind->set_onu_id(key->onu_id);
+ sufi_ind->set_status(alarm_status_to_string(data->alarm_status));
+ alarm_ind->set_allocated_onu_startup_fail_ind(sufi_ind);
- sufi_ind->set_intf_id(key->intf_id);
- sufi_ind->set_onu_id(key->sub_term_id);
- sufi_ind->set_status(alarm_status_to_string(data->sufi_status));
-
- alarm_ind->set_allocated_onu_startup_fail_ind(sufi_ind);
- ind.set_allocated_alarm_ind(alarm_ind);
+ ind.set_allocated_alarm_ind(alarm_ind);
+ }
+ }
+ }
oltIndQ.push(ind);
- return BCM_ERR_OK;
+ bcmolt_msg_free(msg);
}
-bcmos_errno OnuSignalDegradeIndication(bcmbal_obj *obj) {
+static void OnuSignalDegradeIndication(bcmolt_devid olt, bcmolt_msg *msg) {
openolt::Indication ind;
openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
openolt::OnuSignalDegradeIndication* sdi_ind = new openolt::OnuSignalDegradeIndication;
- bcmbal_subscriber_terminal_key *key =
- &(((bcmbal_subscriber_terminal_sdi*)obj)->key);
+ switch (msg->obj_type) {
+ case BCMOLT_OBJ_ID_ONU:
+ switch (msg->subgroup) {
+ case BCMOLT_ONU_AUTO_SUBGROUP_SDI:
+ {
+ bcmolt_onu_key *key = &((bcmolt_onu_sdi*)msg)->key;
+ bcmolt_onu_sdi_data *data = &((bcmolt_onu_sdi*)msg)->data;
- bcmbal_subscriber_terminal_sdi_data *data =
- &(((bcmbal_subscriber_terminal_sdi*)obj)->data);
+ OPENOLT_LOG(WARNING, openolt_log_id, "onu signal degrade indication, intf_id %d, onu_id %d, alarm %d, BER %d\n",
+ key->pon_ni, key->onu_id, data->alarm_status, data->ber);
- BCM_LOG(WARNING, openolt_log_id, "onu signal degrade indication, intf_id %d, onu_id %d, alarm %d, BER %d\n",
- key->intf_id, key->sub_term_id, data->sdi_status, data->ber);
+ sdi_ind->set_intf_id(key->pon_ni);
+ sdi_ind->set_onu_id(key->onu_id);
+ sdi_ind->set_status(alarm_status_to_string(data->alarm_status));
+ sdi_ind->set_inverse_bit_error_rate(data->ber);
+ alarm_ind->set_allocated_onu_signal_degrade_ind(sdi_ind);
- sdi_ind->set_intf_id(key->intf_id);
- sdi_ind->set_onu_id(key->sub_term_id);
- sdi_ind->set_status(alarm_status_to_string(data->sdi_status));
- sdi_ind->set_inverse_bit_error_rate(data->ber);
-
- alarm_ind->set_allocated_onu_signal_degrade_ind(sdi_ind);
- ind.set_allocated_alarm_ind(alarm_ind);
+ ind.set_allocated_alarm_ind(alarm_ind);
+ }
+ }
+ }
oltIndQ.push(ind);
- return BCM_ERR_OK;
+ bcmolt_msg_free(msg);
}
-bcmos_errno OnuDriftOfWindowIndication(bcmbal_obj *obj) {
+static void OnuDriftOfWindowIndication(bcmolt_devid olt, bcmolt_msg *msg) {
openolt::Indication ind;
openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
openolt::OnuDriftOfWindowIndication* dowi_ind = new openolt::OnuDriftOfWindowIndication;
- bcmbal_subscriber_terminal_key *key =
- &(((bcmbal_subscriber_terminal_dowi*)obj)->key);
+ switch (msg->obj_type) {
+ case BCMOLT_OBJ_ID_ONU:
+ switch (msg->subgroup) {
+ case BCMOLT_ONU_AUTO_SUBGROUP_DOWI:
+ {
+ bcmolt_onu_key *key = &((bcmolt_onu_dowi*)msg)->key;
+ bcmolt_onu_dowi_data *data = &((bcmolt_onu_dowi*)msg)->data;
- bcmbal_subscriber_terminal_dowi_data *data =
- &(((bcmbal_subscriber_terminal_dowi*)obj)->data);
+ 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",
+ key->pon_ni, key->onu_id, data->alarm_status, data->drift_value, data->new_eqd);
- BCM_LOG(WARNING, openolt_log_id, "onu drift of window indication, intf_id %d, onu_id %d, alarm %d, drift %d, new_eqd %d\n",
- key->intf_id, key->sub_term_id, data->dowi_status, data->drift_value, data->new_eqd);
+ dowi_ind->set_intf_id(key->pon_ni);
+ dowi_ind->set_onu_id(key->onu_id);
+ dowi_ind->set_status(alarm_status_to_string(data->alarm_status));
+ dowi_ind->set_drift(data->drift_value);
+ dowi_ind->set_new_eqd(data->new_eqd);
+ alarm_ind->set_allocated_onu_drift_of_window_ind(dowi_ind);
- dowi_ind->set_intf_id(key->intf_id);
- dowi_ind->set_onu_id(key->sub_term_id);
- dowi_ind->set_status(alarm_status_to_string(data->dowi_status));
- dowi_ind->set_drift(data->drift_value);
- dowi_ind->set_new_eqd(data->new_eqd);
-
- alarm_ind->set_allocated_onu_drift_of_window_ind(dowi_ind);
- ind.set_allocated_alarm_ind(alarm_ind);
+ ind.set_allocated_alarm_ind(alarm_ind);
+ }
+ }
+ }
oltIndQ.push(ind);
- return BCM_ERR_OK;
+ bcmolt_msg_free(msg);
}
-bcmos_errno OnuLossOfOmciChannelIndication(bcmbal_obj *obj) {
+static void OnuLossOfOmciChannelIndication(bcmolt_devid olt, bcmolt_msg *msg) {
openolt::Indication ind;
openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
openolt::OnuLossOfOmciChannelIndication* looci_ind = new openolt::OnuLossOfOmciChannelIndication;
- bcmbal_subscriber_terminal_key *key =
- &(((bcmbal_subscriber_terminal_looci*)obj)->key);
+ switch (msg->obj_type) {
+ case BCMOLT_OBJ_ID_ONU:
+ switch (msg->subgroup) {
+ case BCMOLT_ONU_AUTO_SUBGROUP_LOOCI:
+ {
+ bcmolt_onu_key *key = &((bcmolt_onu_looci*)msg)->key;
+ bcmolt_onu_looci_data *data = &((bcmolt_onu_looci*)msg)->data;
- bcmbal_subscriber_terminal_looci_data *data =
- &(((bcmbal_subscriber_terminal_looci*)obj)->data);
+ OPENOLT_LOG(WARNING, openolt_log_id, "onu loss of OMCI channel indication, intf_id %d, onu_id %d, alarm %d\n",
+ key->pon_ni, key->onu_id, data->alarm_status);
- BCM_LOG(WARNING, openolt_log_id, "onu loss of OMCI channel indication, intf_id %d, onu_id %d, alarm %d\n",
- key->intf_id, key->sub_term_id, data->looci_status);
+ looci_ind->set_intf_id(key->pon_ni);
+ looci_ind->set_onu_id(key->onu_id);
+ looci_ind->set_status(alarm_status_to_string(data->alarm_status));
+ alarm_ind->set_allocated_onu_loss_omci_ind(looci_ind);
- looci_ind->set_intf_id(key->intf_id);
- looci_ind->set_onu_id(key->sub_term_id);
- looci_ind->set_status(alarm_status_to_string(data->looci_status));
-
- alarm_ind->set_allocated_onu_loss_omci_ind(looci_ind);
- ind.set_allocated_alarm_ind(alarm_ind);
+ ind.set_allocated_alarm_ind(alarm_ind);
+ }
+ }
+ }
oltIndQ.push(ind);
- return BCM_ERR_OK;
+ bcmolt_msg_free(msg);
}
-bcmos_errno OnuSignalsFailureIndication(bcmbal_obj *obj) {
+static void OnuSignalsFailureIndication(bcmolt_devid olt, bcmolt_msg *msg) {
openolt::Indication ind;
openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
openolt::OnuSignalsFailureIndication* sfi_ind = new openolt::OnuSignalsFailureIndication;
- bcmbal_subscriber_terminal_key *key =
- &(((bcmbal_subscriber_terminal_sfi*)obj)->key);
+ switch (msg->obj_type) {
+ case BCMOLT_OBJ_ID_ONU:
+ switch (msg->subgroup) {
+ case BCMOLT_ONU_AUTO_SUBGROUP_SFI:
+ {
+ bcmolt_onu_key *key = &((bcmolt_onu_sfi*)msg)->key;
+ bcmolt_onu_sfi_data *data = &((bcmolt_onu_sfi*)msg)->data;
- bcmbal_subscriber_terminal_sfi_data *data =
- &(((bcmbal_subscriber_terminal_sfi*)obj)->data);
-
- BCM_LOG(WARNING, openolt_log_id, "onu signals failure indication, intf_id %d, onu_id %d, alarm %d, BER %d\n",
- key->intf_id, key->sub_term_id, data->sfi_status, data->ber);
+ OPENOLT_LOG(WARNING, openolt_log_id, "onu signals failure indication, intf_id %d, onu_id %d, alarm %d, BER %d\n",
+ key->pon_ni, key->onu_id, data->alarm_status, data->ber);
- sfi_ind->set_intf_id(key->intf_id);
- sfi_ind->set_onu_id(key->sub_term_id);
- sfi_ind->set_status(alarm_status_to_string(data->sfi_status));
- sfi_ind->set_inverse_bit_error_rate(data->ber);
+ sfi_ind->set_intf_id(key->pon_ni);
+ sfi_ind->set_onu_id(key->onu_id);
+ sfi_ind->set_status(alarm_status_to_string(data->alarm_status));
+ sfi_ind->set_inverse_bit_error_rate(data->ber);
+ alarm_ind->set_allocated_onu_signals_fail_ind(sfi_ind);
- alarm_ind->set_allocated_onu_signals_fail_ind(sfi_ind);
- ind.set_allocated_alarm_ind(alarm_ind);
+ ind.set_allocated_alarm_ind(alarm_ind);
+ }
+ }
+ }
oltIndQ.push(ind);
- return BCM_ERR_OK;
+ bcmolt_msg_free(msg);
}
-bcmos_errno OnuTransmissionInterferenceWarningIndication(bcmbal_obj *obj) {
+static void OnuTransmissionInterferenceWarningIndication(bcmolt_devid olt, bcmolt_msg *msg) {
openolt::Indication ind;
openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
openolt::OnuTransmissionInterferenceWarning* tiwi_ind = new openolt::OnuTransmissionInterferenceWarning;
- bcmbal_subscriber_terminal_key *key =
- &(((bcmbal_subscriber_terminal_tiwi*)obj)->key);
+ switch (msg->obj_type) {
+ case BCMOLT_OBJ_ID_ONU:
+ switch (msg->subgroup) {
+ case BCMOLT_ONU_AUTO_SUBGROUP_TIWI:
+ {
+ bcmolt_onu_key *key = &((bcmolt_onu_tiwi*)msg)->key;
+ bcmolt_onu_tiwi_data *data = &((bcmolt_onu_tiwi*)msg)->data;
- bcmbal_subscriber_terminal_tiwi_data *data =
- &(((bcmbal_subscriber_terminal_tiwi*)obj)->data);
+ OPENOLT_LOG(WARNING, openolt_log_id, "onu transmission interference warning indication, intf_id %d, onu_id %d, alarm %d, drift %d\n",
+ key->pon_ni, key->onu_id, data->alarm_status, data->drift_value);
- BCM_LOG(WARNING, openolt_log_id, "onu transmission interference warning indication, intf_id %d, onu_id %d, alarm %d, drift %d\n",
- key->intf_id, key->sub_term_id, data->tiwi_status, data->drift_value);
+ tiwi_ind->set_intf_id(key->pon_ni);
+ tiwi_ind->set_onu_id(key->onu_id);
+ tiwi_ind->set_status(alarm_status_to_string(data->alarm_status));
+ tiwi_ind->set_drift(data->drift_value);
+ alarm_ind->set_allocated_onu_tiwi_ind(tiwi_ind);
- tiwi_ind->set_intf_id(key->intf_id);
- tiwi_ind->set_onu_id(key->sub_term_id);
- tiwi_ind->set_status(alarm_status_to_string(data->tiwi_status));
- tiwi_ind->set_drift(data->drift_value);
-
- alarm_ind->set_allocated_onu_tiwi_ind(tiwi_ind);
- ind.set_allocated_alarm_ind(alarm_ind);
+ ind.set_allocated_alarm_ind(alarm_ind);
+ }
+ }
+ }
oltIndQ.push(ind);
- return BCM_ERR_OK;
+ bcmolt_msg_free(msg);
}
-bcmos_errno OnuActivationFailureIndication(bcmbal_obj *obj) {
+static void OnuActivationFailureIndication(bcmolt_devid olt, bcmolt_msg *msg) {
openolt::Indication ind;
openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
openolt::OnuActivationFailureIndication* activation_fail_ind = new openolt::OnuActivationFailureIndication;
- bcmbal_subscriber_terminal_key *key =
- &(((bcmbal_subscriber_terminal_sub_term_act_fail*)obj)->key);
+ switch (msg->obj_type) {
+ case BCMOLT_OBJ_ID_ONU:
+ switch (msg->subgroup) {
+ case BCMOLT_ONU_AUTO_SUBGROUP_ONU_DEACTIVATION_COMPLETED:
+ {
+ bcmolt_onu_key *key = &((bcmolt_onu_onu_activation_completed*)msg)->key;
+ bcmolt_onu_onu_activation_completed_data *data =
+ &((bcmolt_onu_onu_activation_completed*)msg)->data;
- BCM_LOG(WARNING, openolt_log_id, "onu activation failure indication, intf_id %d, onu_id %d\n",
- key->intf_id, key->sub_term_id);
+ OPENOLT_LOG(INFO, openolt_log_id, "Got onu deactivation, intf_id %d, onu_id %d, fail_reason %d\n",
+ key->pon_ni, key->onu_id, data->fail_reason);
+ activation_fail_ind->set_intf_id(key->pon_ni);
+ activation_fail_ind->set_onu_id(key->onu_id);
+ alarm_ind->set_allocated_onu_activation_fail_ind(activation_fail_ind);
- activation_fail_ind->set_intf_id(key->intf_id);
- activation_fail_ind->set_onu_id(key->sub_term_id);
-
- alarm_ind->set_allocated_onu_activation_fail_ind(activation_fail_ind);
- ind.set_allocated_alarm_ind(alarm_ind);
+ ind.set_allocated_alarm_ind(alarm_ind);
+ }
+ }
+ }
oltIndQ.push(ind);
- return BCM_ERR_OK;
+ bcmolt_msg_free(msg);
}
+/* removed by BAL v3.0
bcmos_errno OnuProcessingErrorIndication(bcmbal_obj *obj) {
openolt::Indication ind;
openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
@@ -655,7 +800,7 @@
bcmbal_subscriber_terminal_key *key =
&(((bcmbal_subscriber_terminal_processing_error*)obj)->key);
- BCM_LOG(WARNING, openolt_log_id, "onu processing error indication, intf_id %d, onu_id %d\n",
+ OPENOLT_LOG(WARNING, openolt_log_id, "onu processing error indication, intf_id %d, onu_id %d\n",
key->intf_id, key->sub_term_id);
@@ -668,226 +813,180 @@
oltIndQ.push(ind);
return BCM_ERR_OK;
}
+*/
Status SubscribeIndication() {
- bcmbal_cb_cfg cb_cfg = {};
- uint16_t ind_subgroup;
+ bcmolt_rx_cfg rx_cfg = {};
+ bcmos_errno rc;
if (subscribed) {
return Status::OK;
}
- cb_cfg.module = BCMOS_MODULE_ID_NONE;
+ rx_cfg.obj_type = BCMOLT_OBJ_ID_DEVICE;
+ rx_cfg.rx_cb = OltOperIndication;
+ rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
+ rx_cfg.subgroup = bcmolt_device_auto_subgroup_connection_complete;
+ rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
+ if(rc != BCM_ERR_OK)
+ return Status(grpc::StatusCode::INTERNAL,
+ "Olt connection complete state indication subscribe failed");
- /* OLT device operational state change indication */
- cb_cfg.obj_type = BCMBAL_OBJ_ID_ACCESS_TERMINAL;
- ind_subgroup = bcmbal_access_terminal_auto_id_oper_status_change;
- cb_cfg.p_subgroup = &ind_subgroup;
- cb_cfg.ind_cb_hdlr = (f_bcmbal_ind_handler)OltOperIndication;
- if (BCM_ERR_OK != bcmbal_subscribe_ind(DEFAULT_ATERM_ID, &cb_cfg)) {
- return Status(grpc::StatusCode::INTERNAL, "Olt operations state change indication subscribe failed");
- }
+ rx_cfg.obj_type = BCMOLT_OBJ_ID_DEVICE;
+ rx_cfg.rx_cb = OltOperIndication;
+ rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
+ rx_cfg.subgroup = bcmolt_device_auto_subgroup_disconnection_complete;
+ rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
+ if(rc != BCM_ERR_OK)
+ return Status(grpc::StatusCode::INTERNAL,
+ "Olt disconnection complete state indication subscribe failed");
+
+ rx_cfg.obj_type = BCMOLT_OBJ_ID_DEVICE;
+ rx_cfg.rx_cb = OltOperIndication;
+ rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
+ rx_cfg.subgroup = bcmolt_device_auto_subgroup_connection_failure;
+ rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
+ if(rc != BCM_ERR_OK)
+ return Status(grpc::StatusCode::INTERNAL,
+ "Olt connection failure state indication subscribe failed");
/* Interface LOS indication */
- cb_cfg.obj_type = BCMBAL_OBJ_ID_INTERFACE;
- ind_subgroup = bcmbal_interface_auto_id_los;
- cb_cfg.p_subgroup = &ind_subgroup;
- cb_cfg.ind_cb_hdlr = (f_bcmbal_ind_handler)LosIndication;
- if (BCM_ERR_OK != bcmbal_subscribe_ind(DEFAULT_ATERM_ID, &cb_cfg)) {
+ rx_cfg.obj_type = BCMOLT_OBJ_ID_PON_INTERFACE;
+ rx_cfg.rx_cb = LosIndication;
+ rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
+ rx_cfg.subgroup = bcmolt_pon_interface_auto_subgroup_los;
+ rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
+ if(rc != BCM_ERR_OK)
return Status(grpc::StatusCode::INTERNAL, "LOS indication subscribe failed");
- }
- /* Interface indication */
- cb_cfg.obj_type = BCMBAL_OBJ_ID_INTERFACE;
- ind_subgroup = bcmbal_interface_auto_id_oper_status_change;
- cb_cfg.p_subgroup = &ind_subgroup;
- cb_cfg.ind_cb_hdlr = (f_bcmbal_ind_handler)IfIndication;
- if (BCM_ERR_OK != bcmbal_subscribe_ind(DEFAULT_ATERM_ID, &cb_cfg)) {
- return Status(grpc::StatusCode::INTERNAL, "Interface indication subscribe failed");
- }
+ rx_cfg.obj_type = BCMOLT_OBJ_ID_PON_INTERFACE;
+ rx_cfg.rx_cb = IfOperIndication;
+ rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
+ rx_cfg.subgroup = bcmolt_pon_interface_auto_subgroup_state_change_completed;
+ rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
+ if(rc != BCM_ERR_OK)
+ return Status(grpc::StatusCode::INTERNAL,
+ "PON Interface operations state change indication subscribe failed");
- /* Interface operational state change indication */
- cb_cfg.obj_type = BCMBAL_OBJ_ID_INTERFACE;
- ind_subgroup = bcmbal_interface_auto_id_oper_status_change;
- cb_cfg.p_subgroup = &ind_subgroup;
- cb_cfg.ind_cb_hdlr = (f_bcmbal_ind_handler)IfOperIndication;
- if (BCM_ERR_OK != bcmbal_subscribe_ind(DEFAULT_ATERM_ID, &cb_cfg)) {
- return Status(grpc::StatusCode::INTERNAL, "Interface operations state change indication subscribe failed");
- }
+ rx_cfg.obj_type = BCMOLT_OBJ_ID_NNI_INTERFACE;
+ rx_cfg.rx_cb = IfOperIndication;
+ rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
+ rx_cfg.subgroup = bcmolt_nni_interface_auto_subgroup_state_change;
+ rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
+ if(rc != BCM_ERR_OK)
+ return Status(grpc::StatusCode::INTERNAL,
+ "NNI Interface operations state change indication subscribe failed");
- /* onu alarm indication */
- cb_cfg.obj_type = BCMBAL_OBJ_ID_SUBSCRIBER_TERMINAL;
- ind_subgroup = bcmbal_subscriber_terminal_auto_id_sub_term_alarm;
- cb_cfg.p_subgroup = &ind_subgroup;
- cb_cfg.ind_cb_hdlr = (f_bcmbal_ind_handler)OnuAlarmIndication;
- if (BCM_ERR_OK != bcmbal_subscribe_ind(DEFAULT_ATERM_ID, &cb_cfg)) {
+ rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
+ rx_cfg.rx_cb = OnuAlarmIndication;
+ rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
+ rx_cfg.subgroup = bcmolt_onu_auto_subgroup_xgpon_alarm;
+ rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
+ if(rc != BCM_ERR_OK)
return Status(grpc::StatusCode::INTERNAL, "onu alarm indication subscribe failed");
- }
- /* onu dying-gasp indication */
- cb_cfg.obj_type = BCMBAL_OBJ_ID_SUBSCRIBER_TERMINAL;
- ind_subgroup = bcmbal_subscriber_terminal_auto_id_dgi;
- cb_cfg.p_subgroup = &ind_subgroup;
- cb_cfg.ind_cb_hdlr = (f_bcmbal_ind_handler)OnuDyingGaspIndication;
- if (BCM_ERR_OK != bcmbal_subscribe_ind(DEFAULT_ATERM_ID, &cb_cfg)) {
+ rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
+ rx_cfg.rx_cb = OnuAlarmIndication;
+ rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
+ rx_cfg.subgroup = bcmolt_onu_auto_subgroup_gpon_alarm;
+ rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
+ if(rc != BCM_ERR_OK)
+ return Status(grpc::StatusCode::INTERNAL, "onu alarm indication subscribe failed");
+
+ rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
+ rx_cfg.rx_cb = OnuDyingGaspIndication;
+ rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
+ rx_cfg.subgroup = bcmolt_onu_auto_subgroup_dgi;
+ rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
+ if(rc != BCM_ERR_OK)
return Status(grpc::StatusCode::INTERNAL, "onu dying-gasp indication subscribe failed");
- }
- /* onu discovery indication */
- cb_cfg.obj_type = BCMBAL_OBJ_ID_SUBSCRIBER_TERMINAL;
- ind_subgroup = bcmbal_subscriber_terminal_auto_id_sub_term_disc;
- cb_cfg.p_subgroup = &ind_subgroup;
- cb_cfg.ind_cb_hdlr = (f_bcmbal_ind_handler)OnuDiscoveryIndication;
- if (BCM_ERR_OK != bcmbal_subscribe_ind(DEFAULT_ATERM_ID, &cb_cfg)) {
+ rx_cfg.obj_type = BCMOLT_OBJ_ID_PON_INTERFACE;
+ rx_cfg.rx_cb = OnuDiscoveryIndication;
+ rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
+ rx_cfg.subgroup = bcmolt_pon_interface_auto_subgroup_onu_discovered;
+ rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
+ if(rc != BCM_ERR_OK)
return Status(grpc::StatusCode::INTERNAL, "onu discovery indication subscribe failed");
- }
- /* onu indication */
- cb_cfg.obj_type = BCMBAL_OBJ_ID_SUBSCRIBER_TERMINAL;
- ind_subgroup = bcmbal_subscriber_terminal_auto_id_oper_status_change;
- cb_cfg.p_subgroup = &ind_subgroup;
- cb_cfg.ind_cb_hdlr = (f_bcmbal_ind_handler)OnuIndication;
- if (BCM_ERR_OK != bcmbal_subscribe_ind(DEFAULT_ATERM_ID, &cb_cfg)) {
+ rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
+ rx_cfg.rx_cb = OnuIndication;
+ rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
+ rx_cfg.subgroup = bcmolt_onu_auto_subgroup_ranging_completed;
+
+ rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
+ if(rc != BCM_ERR_OK)
return Status(grpc::StatusCode::INTERNAL, "onu indication subscribe failed");
- }
- /* onu operational state change indication */
- cb_cfg.obj_type = BCMBAL_OBJ_ID_SUBSCRIBER_TERMINAL;
- ind_subgroup = bcmbal_subscriber_terminal_auto_id_oper_status_change;
- cb_cfg.p_subgroup = &ind_subgroup;
- cb_cfg.ind_cb_hdlr = (f_bcmbal_ind_handler)OnuOperIndication;
- if (BCM_ERR_OK != bcmbal_subscribe_ind(DEFAULT_ATERM_ID, &cb_cfg)) {
- return Status(grpc::StatusCode::INTERNAL, "onu operational state change indication subscribe failed");
- }
- /* Packet (bearer) indication */
- cb_cfg.obj_type = BCMBAL_OBJ_ID_PACKET;
- ind_subgroup = bcmbal_packet_auto_id_bearer_channel_rx;
- cb_cfg.p_subgroup = &ind_subgroup;
- cb_cfg.ind_cb_hdlr = (f_bcmbal_ind_handler)PacketIndication;
- if (BCM_ERR_OK != bcmbal_subscribe_ind(DEFAULT_ATERM_ID, &cb_cfg)) {
- return Status(grpc::StatusCode::INTERNAL, "Packet indication subscribe failed");
- }
+ rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
+ rx_cfg.rx_cb = OnuStartupFailureIndication;
+ rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
+ rx_cfg.subgroup = bcmolt_onu_auto_subgroup_sufi;
+ rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
+ if(rc != BCM_ERR_OK)
+ return Status(grpc::StatusCode::INTERNAL,
+ "onu startup failure indication subscribe failed");
- /* Flow Operational State Change */
- cb_cfg.obj_type = BCMBAL_OBJ_ID_FLOW;
- ind_subgroup = bcmbal_flow_auto_id_oper_status_change;
- cb_cfg.p_subgroup = &ind_subgroup;
- cb_cfg.ind_cb_hdlr = (f_bcmbal_ind_handler)FlowOperIndication;
- if (BCM_ERR_OK != bcmbal_subscribe_ind(DEFAULT_ATERM_ID, &cb_cfg)) {
- return Status(grpc::StatusCode::INTERNAL, "Flow operational state change indication subscribe failed");
- }
-#if 0
- /* Flow Indication */
- cb_cfg.obj_type = BCMBAL_OBJ_ID_FLOW;
- ind_subgroup = bcmbal_flow_auto_id_ind;
- cb_cfg.p_subgroup = &ind_subgroup;
- cb_cfg.ind_cb_hdlr = (f_bcmbal_ind_handler)FlowIndication;
- if (BCM_ERR_OK != bcmbal_subscribe_ind(DEFAULT_ATERM_ID, &cb_cfg)) {
- return Status(grpc::StatusCode::INTERNAL, "Flow indication subscribe failed");
- }
-
- /* TM queue indication */
- cb_cfg.obj_type = BCMBAL_OBJ_ID_TM_QUEUE;
- ind_subgroup = bcmbal_tm_queue_auto_id_ind;
- cb_cfg.p_subgroup = &ind_subgroup;
- cb_cfg.ind_cb_hdlr = (f_bcmbal_ind_handler)TmQIndication;
- if (BCM_ERR_OK != bcmbal_subscribe_ind(DEFAULT_ATERM_ID, &cb_cfg)) {
- return Status(grpc::StatusCode::INTERNAL, "Traffic mgmt queue indication subscribe failed");
- }
-#endif
-
- /* TM sched indication */
- cb_cfg.obj_type = BCMBAL_OBJ_ID_TM_SCHED;
- ind_subgroup = bcmbal_tm_sched_auto_id_oper_status_change;
- cb_cfg.p_subgroup = &ind_subgroup;
- cb_cfg.ind_cb_hdlr = (f_bcmbal_ind_handler)TmSchedIndication;
- if (BCM_ERR_OK != bcmbal_subscribe_ind(DEFAULT_ATERM_ID, &cb_cfg)) {
- return Status(grpc::StatusCode::INTERNAL, "Traffic mgmt queue indication subscribe failed");
- }
-
-#if 0
- /* Multicast group indication */
- cb_cfg.obj_type = BCMBAL_OBJ_ID_GROUP;
- ind_subgroup = bcmbal_group_auto_id_ind;
- cb_cfg.p_subgroup = &ind_subgroup;
- cb_cfg.ind_cb_hdlr = (f_bcmbal_ind_handler)McastGroupIndication;
- if (BCM_ERR_OK != bcmbal_subscribe_ind(DEFAULT_ATERM_ID, &cb_cfg)) {
- return Status(grpc::StatusCode::INTERNAL, "Multicast group indication subscribe failed");
- }
-#endif
-
-
- /* ONU startup failure indication */
- cb_cfg.obj_type = BCMBAL_OBJ_ID_SUBSCRIBER_TERMINAL;
- ind_subgroup = bcmbal_subscriber_terminal_auto_id_sufi;
- cb_cfg.p_subgroup = &ind_subgroup;
- cb_cfg.ind_cb_hdlr = (f_bcmbal_ind_handler)OnuStartupFailureIndication;
- if (BCM_ERR_OK != bcmbal_subscribe_ind(DEFAULT_ATERM_ID, &cb_cfg)) {
- return Status(grpc::StatusCode::INTERNAL, "onu startup failure indication subscribe failed");
- }
-
- /* SDI indication */
- cb_cfg.obj_type = BCMBAL_OBJ_ID_SUBSCRIBER_TERMINAL;
- ind_subgroup = bcmbal_subscriber_terminal_auto_id_sdi;
- cb_cfg.p_subgroup = &ind_subgroup;
- cb_cfg.ind_cb_hdlr = (f_bcmbal_ind_handler)OnuSignalDegradeIndication;
- if (BCM_ERR_OK != bcmbal_subscribe_ind(DEFAULT_ATERM_ID, &cb_cfg)) {
+ rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
+ rx_cfg.rx_cb = OnuSignalDegradeIndication;
+ rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
+ rx_cfg.subgroup = bcmolt_onu_auto_subgroup_sdi;
+ rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
+ if(rc != BCM_ERR_OK)
return Status(grpc::StatusCode::INTERNAL, "onu sdi indication subscribe failed");
- }
- /* DOWI indication */
- cb_cfg.obj_type = BCMBAL_OBJ_ID_SUBSCRIBER_TERMINAL;
- ind_subgroup = bcmbal_subscriber_terminal_auto_id_dowi;
- cb_cfg.p_subgroup = &ind_subgroup;
- cb_cfg.ind_cb_hdlr = (f_bcmbal_ind_handler)OnuDriftOfWindowIndication;
- if (BCM_ERR_OK != bcmbal_subscribe_ind(DEFAULT_ATERM_ID, &cb_cfg)) {
+ rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
+ rx_cfg.rx_cb = OnuDriftOfWindowIndication;
+ rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
+ rx_cfg.subgroup = bcmolt_onu_auto_subgroup_dowi;
+ rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
+ if(rc != BCM_ERR_OK)
return Status(grpc::StatusCode::INTERNAL, "onu dowi indication subscribe failed");
- }
/* LOOCI indication */
- cb_cfg.obj_type = BCMBAL_OBJ_ID_SUBSCRIBER_TERMINAL;
- ind_subgroup = bcmbal_subscriber_terminal_auto_id_looci;
- cb_cfg.p_subgroup = &ind_subgroup;
- cb_cfg.ind_cb_hdlr = (f_bcmbal_ind_handler)OnuLossOfOmciChannelIndication;
- if (BCM_ERR_OK != bcmbal_subscribe_ind(DEFAULT_ATERM_ID, &cb_cfg)) {
+ rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
+ rx_cfg.rx_cb = OnuLossOfOmciChannelIndication;
+ rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
+ rx_cfg.subgroup = bcmolt_onu_auto_subgroup_looci;
+ rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
+ if(rc != BCM_ERR_OK)
return Status(grpc::StatusCode::INTERNAL, "onu looci indication subscribe failed");
- }
/* SFI indication */
- cb_cfg.obj_type = BCMBAL_OBJ_ID_SUBSCRIBER_TERMINAL;
- ind_subgroup = bcmbal_subscriber_terminal_auto_id_sfi;
- cb_cfg.p_subgroup = &ind_subgroup;
- cb_cfg.ind_cb_hdlr = (f_bcmbal_ind_handler)OnuSignalsFailureIndication;
- if (BCM_ERR_OK != bcmbal_subscribe_ind(DEFAULT_ATERM_ID, &cb_cfg)) {
+ rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
+ rx_cfg.rx_cb = OnuSignalsFailureIndication;
+ rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
+ rx_cfg.subgroup = bcmolt_onu_auto_subgroup_sfi;
+ rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
+ if(rc != BCM_ERR_OK)
return Status(grpc::StatusCode::INTERNAL, "onu sfi indication subscribe failed");
- }
/* TIWI indication */
- cb_cfg.obj_type = BCMBAL_OBJ_ID_SUBSCRIBER_TERMINAL;
- ind_subgroup = bcmbal_subscriber_terminal_auto_id_tiwi;
- cb_cfg.p_subgroup = &ind_subgroup;
- cb_cfg.ind_cb_hdlr = (f_bcmbal_ind_handler)OnuTransmissionInterferenceWarningIndication;
- if (BCM_ERR_OK != bcmbal_subscribe_ind(DEFAULT_ATERM_ID, &cb_cfg)) {
+ rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
+ rx_cfg.rx_cb = OnuTransmissionInterferenceWarningIndication;
+ rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
+ rx_cfg.subgroup = bcmolt_onu_auto_subgroup_tiwi;
+ rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
+ if(rc != BCM_ERR_OK)
return Status(grpc::StatusCode::INTERNAL, "onu tiwi indication subscribe failed");
- }
- /* TIWI indication */
- cb_cfg.obj_type = BCMBAL_OBJ_ID_SUBSCRIBER_TERMINAL;
- ind_subgroup = bcmbal_subscriber_terminal_auto_id_sub_term_act_fail;
- cb_cfg.p_subgroup = &ind_subgroup;
- cb_cfg.ind_cb_hdlr = (f_bcmbal_ind_handler)OnuActivationFailureIndication;
- if (BCM_ERR_OK != bcmbal_subscribe_ind(DEFAULT_ATERM_ID, &cb_cfg)) {
- return Status(grpc::StatusCode::INTERNAL, "onu activation falaire indication subscribe failed");
- }
+ /* ONU Activation Failure Indiction */
+ rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
+ rx_cfg.rx_cb = OnuActivationFailureIndication;
+ rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
+ rx_cfg.subgroup = bcmolt_onu_auto_subgroup_onu_deactivation_completed;
+ rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
+ if(rc != BCM_ERR_OK)
+ return Status(grpc::StatusCode::INTERNAL,
+ "onu activation falaire indication subscribe failed");
- /* ONU processing error indication */
- cb_cfg.obj_type = BCMBAL_OBJ_ID_SUBSCRIBER_TERMINAL;
- ind_subgroup = bcmbal_subscriber_terminal_auto_id_processing_error;
- cb_cfg.p_subgroup = &ind_subgroup;
- cb_cfg.ind_cb_hdlr = (f_bcmbal_ind_handler)OnuProcessingErrorIndication;
- if (BCM_ERR_OK != bcmbal_subscribe_ind(DEFAULT_ATERM_ID, &cb_cfg)) {
- return Status(grpc::StatusCode::INTERNAL, "onu processing error indication subscribe failed");
- }
+ rx_cfg.obj_type = BCMOLT_OBJ_ID_FLOW;
+ rx_cfg.rx_cb = PacketIndication;
+ rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
+ rx_cfg.subgroup = bcmolt_flow_auto_subgroup_receive_eth_packet;
+ rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
+ if(rc != BCM_ERR_OK)
+ return Status(grpc::StatusCode::INTERNAL, "Packet indication subscribe failed");
subscribed = true;
diff --git a/agent/src/indications.h b/agent/src/indications.h
index c2f0724..f762e72 100644
--- a/agent/src/indications.h
+++ b/agent/src/indications.h
@@ -19,7 +19,7 @@
#define OPENOLT_INDICATIONS_H_
#include <grpc++/grpc++.h>
-#include <openolt.grpc.pb.h>
+#include <voltha_protos/openolt.grpc.pb.h>
#include "Queue.h"
extern "C" {
diff --git a/agent/src/stats_collection.cc b/agent/src/stats_collection.cc
index 7bdde4c..62213c2 100644
--- a/agent/src/stats_collection.cc
+++ b/agent/src/stats_collection.cc
@@ -19,7 +19,6 @@
#include <unistd.h>
-#include <openolt.grpc.pb.h>
#include "indications.h"
#include "core.h"
#include "translation.h"
@@ -27,18 +26,18 @@
extern "C"
{
#include <bcmos_system.h>
-#include <bal_api.h>
-#include <bal_api_end.h>
-#include <flow_fsm.h>
+#include <bcmolt_api.h>
+#include <bcmolt_api_model_api_structs.h>
}
//FIXME
#define FLOWS_COUNT 100
-bcmbal_flow_key* flows_keys = new bcmbal_flow_key[FLOWS_COUNT];
+bcmolt_flow_key* flows_keys = new bcmolt_flow_key[FLOWS_COUNT];
+bcmolt_odid device_id = 0;
void init_stats() {
- memset(flows_keys, 0, FLOWS_COUNT * sizeof(bcmbal_flow_key));
+ memset(flows_keys, 0, FLOWS_COUNT * sizeof(bcmolt_flow_key));
}
openolt::PortStatistics* get_default_port_statistics() {
@@ -75,50 +74,110 @@
}
#endif
-openolt::PortStatistics* collectPortStatistics(bcmbal_interface_key key) {
-
- bcmos_errno err;
- bcmbal_interface_stat stat; /**< declare main API struct */
- bcmos_bool clear_on_read = false;
+openolt::PortStatistics* collectPortStatistics(bcmolt_intf_ref intf_ref) {
openolt::PortStatistics* port_stats = get_default_port_statistics();
+#ifndef TEST_MODE
+ bcmos_errno err;
+ bcmolt_stat_flags clear_on_read = BCMOLT_STAT_FLAGS_NONE;
+ bcmolt_nni_interface_stats nni_stats;
+ bcmolt_onu_itu_pon_stats pon_stats;
+ bcmolt_pon_interface_itu_pon_stats itu_pon_stats;
- /* init the API struct */
- BCMBAL_STAT_INIT(&stat, interface, key);
- BCMBAL_STAT_PROP_GET(&stat, interface, all_properties);
- /* call API */
- err = bcmbal_stat_get(DEFAULT_ATERM_ID, &stat.hdr, clear_on_read);
- if (err == BCM_ERR_OK)
- {
- //std::cout << "Interface statistics retrieved"
- // << " intf_id:" << intf_id << std::endl;
+ switch (intf_ref.intf_type) {
+ case BCMOLT_INTERFACE_TYPE_NNI:
+ {
+ bcmolt_nni_interface_key nni_intf_key;
+ nni_intf_key.id = intf_ref.intf_id;
+ /* init the API struct */
+ BCMOLT_STAT_INIT(&nni_stats, nni_interface, stats, nni_intf_key);
+ BCMOLT_MSG_FIELD_GET(&nni_stats, rx_bytes);
+ BCMOLT_MSG_FIELD_GET(&nni_stats, rx_packets);
+ BCMOLT_MSG_FIELD_GET(&nni_stats, rx_ucast_packets);
+ BCMOLT_MSG_FIELD_GET(&nni_stats, rx_mcast_packets);
+ BCMOLT_MSG_FIELD_GET(&nni_stats, rx_bcast_packets);
+ BCMOLT_MSG_FIELD_GET(&nni_stats, rx_error_packets);
+ BCMOLT_MSG_FIELD_GET(&nni_stats, tx_bytes);
+ BCMOLT_MSG_FIELD_GET(&nni_stats, tx_packets);
+ BCMOLT_MSG_FIELD_GET(&nni_stats, tx_ucast_packets);
+ BCMOLT_MSG_FIELD_GET(&nni_stats, tx_mcast_packets);
+ BCMOLT_MSG_FIELD_GET(&nni_stats, tx_bcast_packets);
+ BCMOLT_MSG_FIELD_GET(&nni_stats, tx_error_packets);
- port_stats->set_rx_bytes(stat.data.rx_bytes);
- port_stats->set_rx_packets(stat.data.rx_packets);
- port_stats->set_rx_ucast_packets(stat.data.rx_ucast_packets);
- port_stats->set_rx_mcast_packets(stat.data.rx_mcast_packets);
- port_stats->set_rx_bcast_packets(stat.data.rx_bcast_packets);
- port_stats->set_rx_error_packets(stat.data.rx_error_packets);
- port_stats->set_tx_bytes(stat.data.tx_bytes);
- port_stats->set_tx_packets(stat.data.tx_packets);
- port_stats->set_tx_ucast_packets(stat.data.tx_ucast_packets);
- port_stats->set_tx_mcast_packets(stat.data.tx_mcast_packets);
- port_stats->set_tx_bcast_packets(stat.data.tx_bcast_packets);
- port_stats->set_tx_error_packets(stat.data.tx_error_packets);
- port_stats->set_rx_crc_errors(stat.data.rx_crc_errors);
- port_stats->set_bip_errors(stat.data.bip_errors);
+ /* call API */
+ err = bcmolt_stat_get((bcmolt_oltid)device_id, &nni_stats.hdr, clear_on_read);
+ if (err == BCM_ERR_OK)
+ {
+ //std::cout << "Interface statistics retrieved"
+ // << " intf_id:" << intf_id << std::endl;
+
+ port_stats->set_rx_bytes(nni_stats.data.rx_bytes);
+ port_stats->set_rx_packets(nni_stats.data.rx_packets);
+ port_stats->set_rx_ucast_packets(nni_stats.data.rx_ucast_packets);
+ port_stats->set_rx_mcast_packets(nni_stats.data.rx_mcast_packets);
+ port_stats->set_rx_bcast_packets(nni_stats.data.rx_bcast_packets);
+ port_stats->set_rx_error_packets(nni_stats.data.rx_error_packets);
+ port_stats->set_tx_bytes(nni_stats.data.tx_bytes);
+ port_stats->set_tx_packets(nni_stats.data.tx_packets);
+ port_stats->set_tx_ucast_packets(nni_stats.data.tx_ucast_packets);
+ port_stats->set_tx_mcast_packets(nni_stats.data.tx_mcast_packets);
+ port_stats->set_tx_bcast_packets(nni_stats.data.tx_bcast_packets);
+ port_stats->set_tx_error_packets(nni_stats.data.tx_error_packets);
+
+ } else {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to retrieve port statistics, intf_id %d, intf_type %d\n",
+ (int)intf_ref.intf_id, (int)intf_ref.intf_type);
+ }
+ break;
+ }
+ case BCMOLT_INTERFACE_TYPE_PON:
+ {
+ bcmolt_pon_interface_key key;
+ key.pon_ni = (bcmolt_interface)intf_ref.intf_id;
+ BCMOLT_STAT_INIT(&itu_pon_stats, pon_interface, itu_pon_stats, key);
+ BCMOLT_MSG_FIELD_GET(&itu_pon_stats, tx_packets);
+ BCMOLT_MSG_FIELD_GET(&itu_pon_stats, bip_errors);
+ BCMOLT_MSG_FIELD_GET(&itu_pon_stats, rx_crc_error);
- } else {
- BCM_LOG(ERROR, openolt_log_id, "Failed to retrieve port statistics, intf_id %d, intf_type %d\n",
- (int)key.intf_id, (int)key.intf_type);
- }
+ /* call API */
+ err = bcmolt_stat_get((bcmolt_oltid)device_id, &itu_pon_stats.hdr, clear_on_read);
+ if (err == BCM_ERR_OK) {
+ port_stats->set_tx_packets(itu_pon_stats.data.tx_packets);
+ port_stats->set_bip_errors(itu_pon_stats.data.bip_errors);
+ port_stats->set_rx_crc_errors(itu_pon_stats.data.rx_crc_error);
+ } else {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to retrieve port statistics, intf_id %d, intf_type %d, err %d\n",
+ (int)intf_ref.intf_id, (int)intf_ref.intf_type, err);
+ }
+ {
+ bcmolt_onu_key key;
+ key.pon_ni = (bcmolt_interface)intf_ref.intf_id;
+ BCMOLT_STAT_INIT(&pon_stats, onu, itu_pon_stats, key);
+ BCMOLT_MSG_FIELD_GET(&pon_stats, rx_bytes);
+ BCMOLT_MSG_FIELD_GET(&pon_stats, rx_packets);
+ BCMOLT_MSG_FIELD_GET(&pon_stats, tx_bytes);
- port_stats->set_intf_id(interface_key_to_port_no(key));
+ /* call API */
+ err = bcmolt_stat_get((bcmolt_oltid)device_id, &pon_stats.hdr, clear_on_read);
+ if (err == BCM_ERR_OK) {
+ port_stats->set_rx_bytes(pon_stats.data.rx_bytes);
+ port_stats->set_rx_packets(pon_stats.data.rx_packets);
+ port_stats->set_tx_bytes(pon_stats.data.tx_bytes);
+ } else {
+ OPENOLT_LOG(ERROR, openolt_log_id, "Failed to retrieve port statistics, intf_id %d, intf_type %d, err %d\n",
+ (int)intf_ref.intf_id, (int)intf_ref.intf_type, err);
+ }
+ }
+ break;
+ }
+ }
+
+ port_stats->set_intf_id(interface_key_to_port_no((bcmolt_interface_id)intf_ref.intf_id, (bcmolt_interface_type)intf_ref.intf_type));
time_t now;
time(&now);
port_stats->set_timestamp((int)now);
-
+#endif
return port_stats;
}
@@ -167,26 +226,27 @@
void stats_collection() {
if (!state.is_connected()) {
- BCM_LOG(INFO, openolt_log_id, "Voltha is not connected, do not collect stats\n");
+ OPENOLT_LOG(INFO, openolt_log_id, "Voltha is not connected, do not collect stats\n");
return;
}
if (!state.is_activated()) {
- BCM_LOG(INFO, openolt_log_id, "The OLT is not up, do not collect stats\n");
+ OPENOLT_LOG(INFO, openolt_log_id, "The OLT is not up, do not collect stats\n");
return;
}
- BCM_LOG(DEBUG, openolt_log_id, "Collecting statistics\n");
+ OPENOLT_LOG(DEBUG, openolt_log_id, "Collecting statistics\n");
//Ports statistics
//Uplink ports
for (int i = 0; i < NumNniIf_(); i++) {
- bcmbal_interface_key nni_interface;
- nni_interface.intf_type = BCMBAL_INTF_TYPE_NNI;
- nni_interface.intf_id = i;
+ bcmolt_intf_ref intf_ref;
+ intf_ref.intf_type = BCMOLT_INTERFACE_TYPE_NNI;
+ intf_ref.intf_id = i;
- openolt::PortStatistics* port_stats = collectPortStatistics(nni_interface);
+ openolt::PortStatistics* port_stats =
+ collectPortStatistics(intf_ref);
openolt::Indication ind;
ind.set_allocated_port_stats(port_stats);
@@ -194,11 +254,12 @@
}
//Pon ports
for (int i = 0; i < NumPonIf_(); i++) {
- bcmbal_interface_key pon_interface;
- pon_interface.intf_type = BCMBAL_INTF_TYPE_PON;
- pon_interface.intf_id = i;
+ bcmolt_intf_ref intf_ref;
+ intf_ref.intf_type = BCMOLT_INTERFACE_TYPE_PON;
+ intf_ref.intf_id = i;
- openolt::PortStatistics* port_stats = collectPortStatistics(pon_interface);
+ openolt::PortStatistics* port_stats =
+ collectPortStatistics(intf_ref);
openolt::Indication ind;
ind.set_allocated_port_stats(port_stats);
diff --git a/agent/src/stats_collection.h b/agent/src/stats_collection.h
index 743d0be..8e1c00f 100644
--- a/agent/src/stats_collection.h
+++ b/agent/src/stats_collection.h
@@ -18,17 +18,17 @@
#ifndef OPENOLT_STATS_COLLECTION_H_
#define OPENOLT_STATS_COLLECTION_H_
-#include <openolt.grpc.pb.h>
+#include <voltha_protos/openolt.grpc.pb.h>
extern "C"
{
-#include <bal_model_types.h>
+#include <bcmolt_api_model_supporting_structs.h>
}
void init_stats();
void stop_collecting_statistics();
openolt::PortStatistics* get_default_port_statistics();
-openolt::PortStatistics* collectPortStatistics(bcmbal_interface_key key);
+openolt::PortStatistics* collectPortStatistics(bcmolt_interface_id intf_id, bcmolt_interface_type intf_type);
#if 0
openolt::FlowStatistics* get_default_flow_statistics();
openolt::FlowStatistics* collectFlowStatistics(bcmbal_flow_id flow_id, bcmbal_flow_type flow_type);
diff --git a/agent/src/translation.cc b/agent/src/translation.cc
index 3279acd..2c82f58 100644
--- a/agent/src/translation.cc
+++ b/agent/src/translation.cc
@@ -15,25 +15,27 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#include <string.h>
#include "translation.h"
-int interface_key_to_port_no(bcmbal_interface_key key) {
- if (key.intf_type == BCMBAL_INTF_TYPE_NNI) {
- return (0x1 << 16) + key.intf_id;
+int interface_key_to_port_no(bcmolt_interface_id intf_id,
+ bcmolt_interface_type intf_type) {
+ if (intf_type == BCMOLT_INTERFACE_TYPE_NNI) {
+ return (0x1 << 16) + intf_id;
}
- if (key.intf_type == BCMBAL_INTF_TYPE_PON) {
- return (0x2 << 28) + key.intf_id;
+ if (intf_type == BCMOLT_INTERFACE_TYPE_PON) {
+ return (0x2 << 28) + intf_id;
}
- return key.intf_id;
+ return intf_id;
}
-std::string alarm_status_to_string(bcmbal_alarm_status status) {
+std::string alarm_status_to_string(bcmolt_status status) {
switch (status) {
- case BCMBAL_ALARM_STATUS_OFF:
+ case BCMOLT_STATUS_OFF:
return "off";
- case BCMBAL_ALARM_STATUS_ON:
+ case BCMOLT_STATUS_ON:
return "on";
- case BCMBAL_ALARM_STATUS_NO__CHANGE:
+ case BCMOLT_STATUS_NO_CHANGE:
return "no_change";
}
return "unknown";
diff --git a/agent/src/translation.h b/agent/src/translation.h
index 285eaf1..34fe69e 100644
--- a/agent/src/translation.h
+++ b/agent/src/translation.h
@@ -21,12 +21,11 @@
#include <string>
extern "C"
{
-#include <bal_model_types.h>
+#include <bcmolt_api_model_api_structs.h>
}
-int interface_key_to_port_no(bcmbal_interface_key key);
-std::string alarm_status_to_string(bcmbal_alarm_status status);
-
-
+int interface_key_to_port_no(bcmolt_interface_id intf_id,
+ bcmolt_interface_type intf_type);
+std::string alarm_status_to_string(bcmolt_status status);
#endif
diff --git a/agent/src/utils.cc b/agent/src/utils.cc
index 0ddff3f..9fde90e 100644
--- a/agent/src/utils.cc
+++ b/agent/src/utils.cc
@@ -15,25 +15,26 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#include <string.h>
#include "utils.h"
-std::string serial_number_to_str(bcmbal_serial_number* serial_number) {
+std::string serial_number_to_str(bcmolt_serial_number* serial_number) {
#define SERIAL_NUMBER_SIZE 12
char buff[SERIAL_NUMBER_SIZE+1];
sprintf(buff, "%c%c%c%c%1X%1X%1X%1X%1X%1X%1X%1X",
- serial_number->vendor_id[0],
- serial_number->vendor_id[1],
- serial_number->vendor_id[2],
- serial_number->vendor_id[3],
- serial_number->vendor_specific[0]>>4 & 0x0f,
- serial_number->vendor_specific[0] & 0x0f,
- serial_number->vendor_specific[1]>>4 & 0x0f,
- serial_number->vendor_specific[1] & 0x0f,
- serial_number->vendor_specific[2]>>4 & 0x0f,
- serial_number->vendor_specific[2] & 0x0f,
- serial_number->vendor_specific[3]>>4 & 0x0f,
- serial_number->vendor_specific[3] & 0x0f);
+ serial_number->vendor_id.arr[0],
+ serial_number->vendor_id.arr[1],
+ serial_number->vendor_id.arr[2],
+ serial_number->vendor_id.arr[3],
+ serial_number->vendor_specific.arr[0]>>4 & 0x0f,
+ serial_number->vendor_specific.arr[0] & 0x0f,
+ serial_number->vendor_specific.arr[1]>>4 & 0x0f,
+ serial_number->vendor_specific.arr[1] & 0x0f,
+ serial_number->vendor_specific.arr[2]>>4 & 0x0f,
+ serial_number->vendor_specific.arr[2] & 0x0f,
+ serial_number->vendor_specific.arr[3]>>4 & 0x0f,
+ serial_number->vendor_specific.arr[3] & 0x0f);
return buff;
}
diff --git a/agent/src/utils.h b/agent/src/utils.h
index 53f4a99..52c018a 100644
--- a/agent/src/utils.h
+++ b/agent/src/utils.h
@@ -23,11 +23,11 @@
extern "C"
{
#include <bcmos_system.h>
-#include <bal_api.h>
-#include <bal_api_end.h>
+#include <bcmolt_api.h>
+#include <bcmolt_api_model_supporting_structs.h>
}
-std::string serial_number_to_str(bcmbal_serial_number* serial_number);
+std::string serial_number_to_str(bcmolt_serial_number* serial_number);
std::string vendor_specific_to_str(const char* const serial_number);
#endif