blob: 05eb7ddfe22d3452aaa4b4b118e42fb38015a8b8 [file] [log] [blame]
/*
** Copyright 2017-present Open Networking Foundation
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
**
** http://www.apache.org/licenses/LICENSE-2.0
**
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*/
#include <stdio.h>
#include <bal_api.h>
#undef _SYS_QUEUE_H_
#include "asfvolt16_driver.h"
#include "bal_access_terminal_hdlr.h"
/********************************************************************\
* Function : bal_access_terminal_cfg_set *
* Description : Configures the OLT device *
********************************************************************/
uint32_t bal_access_terminal_cfg_set(BalAccessTerminalCfg *access_term_cfg)
{
bcmos_errno err = BCM_ERR_OK;
bcmbal_access_terminal_cfg acc_term_obj; /**< declare main API struct */
bcmbal_access_terminal_key key = { }; /**< declare key */
key.access_term_id = access_term_cfg->key->access_term_id;
ASFVOLT_LOG(ASFVOLT_DEBUG, "Configuration of OLT starts");
/* init the API struct */
BCMBAL_CFG_INIT(&acc_term_obj, access_terminal, key);
/* decode API parameters from CLI */
ASFVOLT_CFG_PROP_SET(acc_term_obj, access_terminal, admin_state, BCMOS_TRUE,
access_term_cfg->data->admin_state);
err = bcmbal_cfg_set(DEFAULT_ATERM_ID, &(acc_term_obj.hdr));
if(BCM_ERR_OK != err)
{
ASFVOLT_LOG(ASFVOLT_ERROR, "Failed to configure the access-terminal(OLT) to ADMIN-UP");
return BAL_ERRNO__BAL_ERR_INTERNAL;
}
ASFVOLT_LOG(ASFVOLT_INFO, "Access Terminal %d sent to OLT", access_term_cfg->data->admin_state);
return BAL_ERRNO__BAL_ERR_OK;
}
/********************************************************************\
* Function : bal_access_term_indication_cb *
* Description : Call back function registered with BAL to handle *
* event related to access terminal *
********************************************************************/
bcmos_errno bal_access_term_indication_cb(bcmbal_obj *obj)
{
/*bcmos_errno result = BCM_ERR_OK;*/
ASFVOLT_LOG(ASFVOLT_INFO, "Processing API \'%s\' IND callback (status is %s)",
bcmbal_objtype_str(obj->obj_type),
bcmos_strerror(obj->status));
return BAL_ERRNO__BAL_ERR_OK;
}
/********************************************************************\
* Function : bal_access_terminal_cfg_clear *
* Description : Handles the clear/Delete of access terminal *
********************************************************************/
uint32_t bal_access_terminal_cfg_clear(BalAccessTerminalKey *access_term_key)
{
bcmos_errno err = BCM_ERR_OK;
bcmbal_access_terminal_cfg cfg_clear; /**< declare main API struct */
bcmbal_access_terminal_key key = { }; /**< declare key */
ASFVOLT_LOG(ASFVOLT_INFO, "processing the clear request on access terminal");
key.access_term_id = access_term_key->access_term_id;
/* init the API struct */
BCMBAL_CFG_INIT(&cfg_clear, access_terminal, key);
/* call API */
err = bcmbal_cfg_clear(DEFAULT_ATERM_ID, &cfg_clear.hdr);
if( err != BCM_ERR_OK)
{
ASFVOLT_LOG(ASFVOLT_INFO, "Failed to clear the access terminal");
return BAL_ERRNO__BAL_ERR_INTERNAL;
}
ASFVOLT_LOG(ASFVOLT_INFO, "Successfully cleared the access terminal");
return BAL_ERRNO__BAL_ERR_OK;
}
/********************************************************************\
* Function : bal_access_terminal_cfg_get *
* Description : Handles the clear/Delete of access terminal *
********************************************************************/
uint32_t bal_access_terminal_cfg_get (BalAccessTerminalCfg *access_term_cfg)
{
bcmos_errno err = BCM_ERR_OK;
bcmbal_access_terminal_cfg cfg; /**< declare main API struct */
bcmbal_access_terminal_key key = { }; /**< declare key */
ASFVOLT_LOG(ASFVOLT_INFO, "processing the get request on access terminal");
key.access_term_id = access_term_cfg->key->access_term_id;
/* init the API struct */
BCMBAL_CFG_INIT(&cfg, access_terminal, key);
BCMBAL_CFG_PROP_GET(&cfg, access_terminal, all_properties);
/* call API */
err = bcmbal_cfg_get(DEFAULT_ATERM_ID, &cfg.hdr);
if (err != BCM_ERR_OK)
{
ASFVOLT_LOG(ASFVOLT_ERROR, "Failed to get access terminal configuration");
return BAL_ERRNO__BAL_ERR_INTERNAL;
}
access_term_cfg->key->has_access_term_id = BAL_ELEMENT_PRES;
access_term_cfg->key->access_term_id = cfg.key.access_term_id;
access_term_cfg->data->has_admin_state = BAL_ELEMENT_PRES;
access_term_cfg->data->admin_state = cfg.data.admin_state;
access_term_cfg->data->has_oper_status = BAL_ELEMENT_PRES;
access_term_cfg->data->oper_status = cfg.data.oper_status;
access_term_cfg->data->has_iwf_mode = BAL_ELEMENT_PRES;
access_term_cfg->data->iwf_mode = cfg.data.iwf_mode;
access_term_cfg->data->topology->has_num_of_nni_ports = BAL_ELEMENT_PRES;
access_term_cfg->data->topology->num_of_nni_ports = cfg.data.topology.num_of_nni_ports;
access_term_cfg->data->topology->has_num_of_pon_ports = BAL_ELEMENT_PRES;
access_term_cfg->data->topology->num_of_pon_ports = cfg.data.topology.num_of_pon_ports;
access_term_cfg->data->topology->has_num_of_mac_devs = BAL_ELEMENT_PRES;
access_term_cfg->data->topology->num_of_mac_devs = cfg.data.topology.num_of_mac_devs;
access_term_cfg->data->topology->has_num_of_pons_per_mac_dev = BAL_ELEMENT_PRES;
access_term_cfg->data->topology->num_of_pons_per_mac_dev = cfg.data.topology.num_of_pons_per_mac_dev;
access_term_cfg->data->topology->has_pon_family = BAL_ELEMENT_PRES;
access_term_cfg->data->topology->pon_family = cfg.data.topology.pon_family;
access_term_cfg->data->topology->has_pon_sub_family = BAL_ELEMENT_PRES;
access_term_cfg->data->topology->pon_sub_family = cfg.data.topology.pon_sub_family;
access_term_cfg->data->sw_version->has_version_type = BAL_ELEMENT_PRES;
access_term_cfg->data->sw_version->version_type = cfg.data.sw_version.version_type;
access_term_cfg->data->sw_version->has_major_rev = BAL_ELEMENT_PRES;
access_term_cfg->data->sw_version->major_rev = cfg.data.sw_version.major_rev;
access_term_cfg->data->sw_version->has_minor_rev = BAL_ELEMENT_PRES;
access_term_cfg->data->sw_version->minor_rev = cfg.data.sw_version.minor_rev;
access_term_cfg->data->sw_version->has_release_rev = BAL_ELEMENT_PRES;
access_term_cfg->data->sw_version->release_rev = cfg.data.sw_version.release_rev;
access_term_cfg->data->sw_version->has_om_version = BAL_ELEMENT_PRES;
access_term_cfg->data->sw_version->om_version = cfg.data.sw_version.om_version;
access_term_cfg->data->sw_version->has_dev_point = BAL_ELEMENT_PRES;
access_term_cfg->data->sw_version->dev_point = cfg.data.sw_version.dev_point;
access_term_cfg->data->has_conn_id = BAL_ELEMENT_PRES;
access_term_cfg->data->conn_id = cfg.data.conn_id;
return BAL_ERRNO__BAL_ERR_OK;
}