blob: ab243095ac697e26c6826e67d137809c81f6e1c6 [file] [log] [blame]
Rajeswara Raof6b4e6c2017-08-31 17:26:27 +05301/*
2** Copyright 2017-present Open Networking Foundation
3**
4** Licensed under the Apache License, Version 2.0 (the "License");
5** you may not use this file except in compliance with the License.
6** You may obtain a copy of the License at
7**
8** http://www.apache.org/licenses/LICENSE-2.0
9**
10** Unless required by applicable law or agreed to in writing, software
11** distributed under the License is distributed on an "AS IS" BASIS,
12** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13** See the License for the specific language governing permissions and
14** limitations under the License.
15*/
16
17#ifndef DRIVERAPP_ASFVOLT16_DRIVER
18#define DRIVERAPP_ASFVOLT16_DRIVER
19
20/* Includes related to proto buf */
21#include "bal_msg_type.grpc-c.h"
22#include "bal_osmsg.grpc-c.h"
23#include "bal_model_ids.grpc-c.h"
24#include "bal_obj.grpc-c.h"
25#include "bal_model_types.grpc-c.h"
26#include "bal_errno.grpc-c.h"
27#include "bal.grpc-c.h"
28
root2ca2cc02017-11-03 19:51:57 +053029#include <stdio.h>
30
Rajeswara Raof6b4e6c2017-08-31 17:26:27 +053031#define ASFVOLT_ERROR 1
32#define ASFVOLT_INFO 2
33#define ASFVOLT_DEBUG 3
34#define ASFVOLT_MAX_PKT_SIZE 500
35#define ASFVOLT_MAX_DEVICE_ID_SIZE 50
36#define MAX_CHAR_LENGTH 20
37#define MAX_OMCI_MSG_LENGTH 44
38
39char voltha_device_id[ASFVOLT_MAX_DEVICE_ID_SIZE];
Rajeswara Rao9f1cea12017-10-10 18:25:29 +053040unsigned int is_reboot;
Rajeswara Raof6b4e6c2017-08-31 17:26:27 +053041
42typedef struct BalCoreIpInfo
43{
44 char bal_core_arg1[4];
45 char bal_core_ip_port[24];
46 char bal_core_arg2[4];
47 char bal_shared_lib_ip_port[24];
48}balCoreIpInfo;
49
Kim Kempfb032b672017-09-11 18:40:34 -070050#define ASFVOLT_LOG(log_type, format, args...) \
Rajeswara Raof6b4e6c2017-08-31 17:26:27 +053051 if(log_type) \
52 {\
53 printf("File(%s): Line(%d): ", __FUNCTION__, __LINE__);\
Kim Kempfb032b672017-09-11 18:40:34 -070054 printf(format, ## args);\
Rajeswara Raof6b4e6c2017-08-31 17:26:27 +053055 }
56
57
58#define ASFVOLT_CFG_PROP_SET(cfg, obj, param, pram_prst, param_val) \
59 if(pram_prst)\
60 {\
61 BCMBAL_CFG_PROP_SET(&cfg, obj, param, param_val);\
62 }
63
64/***************************************************************
65* *
66* Function Declarations *
67* *
68****************************************************************/
69extern uint32_t asfvolt16_bal_init(BalInit *bal_init, balCoreIpInfo *coreInfo);
70extern uint32_t asfvolt16_bal_finish(void);
71extern uint32_t bal_register_indication_cbs(void);
72extern uint32_t asfvolt16_bal_cfg_set(BalCfg *cfg);
73extern uint32_t asfvolt16_bal_cfg_clear(BalKey *key);
74extern uint32_t asfvolt16_bal_cfg_get(BalKey *key, BalCfg *cfg);
75extern void asfvolt16_send_omci_msg(uint16_t olt_no, uint32_t onu_nu, char* packet_to_send);
Rajeswara Rao92e3fd42017-10-26 10:47:03 +053076extern uint32_t asfvolt16_bal_stats_get(BalIntfType intf_type, uint32_t intf_id, BalInterfaceStatData *statData,
77 BalInterfaceKey *statKey);
Rajeswara Raof6b4e6c2017-08-31 17:26:27 +053078grpc_c_client_t *client;
79
80#endif /* DRIVERAPP_ASFVOLT16_DRIVER */