blob: 6871e2b140d0502d4220731911eeadc62d4e2fdc [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
29#define ASFVOLT_ERROR 1
30#define ASFVOLT_INFO 2
31#define ASFVOLT_DEBUG 3
32#define ASFVOLT_MAX_PKT_SIZE 500
33#define ASFVOLT_MAX_DEVICE_ID_SIZE 50
34#define MAX_CHAR_LENGTH 20
35#define MAX_OMCI_MSG_LENGTH 44
36
37char voltha_device_id[ASFVOLT_MAX_DEVICE_ID_SIZE];
Rajeswara Rao9f1cea12017-10-10 18:25:29 +053038unsigned int is_reboot;
Rajeswara Raof6b4e6c2017-08-31 17:26:27 +053039
40typedef struct BalCoreIpInfo
41{
42 char bal_core_arg1[4];
43 char bal_core_ip_port[24];
44 char bal_core_arg2[4];
45 char bal_shared_lib_ip_port[24];
46}balCoreIpInfo;
47
Kim Kempfb032b672017-09-11 18:40:34 -070048#define ASFVOLT_LOG(log_type, format, args...) \
Rajeswara Raof6b4e6c2017-08-31 17:26:27 +053049 if(log_type) \
50 {\
51 printf("File(%s): Line(%d): ", __FUNCTION__, __LINE__);\
Kim Kempfb032b672017-09-11 18:40:34 -070052 printf(format, ## args);\
Rajeswara Raof6b4e6c2017-08-31 17:26:27 +053053 }
54
55
56#define ASFVOLT_CFG_PROP_SET(cfg, obj, param, pram_prst, param_val) \
57 if(pram_prst)\
58 {\
59 BCMBAL_CFG_PROP_SET(&cfg, obj, param, param_val);\
60 }
61
62/***************************************************************
63* *
64* Function Declarations *
65* *
66****************************************************************/
67extern uint32_t asfvolt16_bal_init(BalInit *bal_init, balCoreIpInfo *coreInfo);
68extern uint32_t asfvolt16_bal_finish(void);
69extern uint32_t bal_register_indication_cbs(void);
70extern uint32_t asfvolt16_bal_cfg_set(BalCfg *cfg);
71extern uint32_t asfvolt16_bal_cfg_clear(BalKey *key);
72extern uint32_t asfvolt16_bal_cfg_get(BalKey *key, BalCfg *cfg);
73extern void asfvolt16_send_omci_msg(uint16_t olt_no, uint32_t onu_nu, char* packet_to_send);
Rajeswara Rao92e3fd42017-10-26 10:47:03 +053074extern uint32_t asfvolt16_bal_stats_get(BalIntfType intf_type, uint32_t intf_id, BalInterfaceStatData *statData,
75 BalInterfaceKey *statKey);
Rajeswara Raof6b4e6c2017-08-31 17:26:27 +053076grpc_c_client_t *client;
77
78#endif /* DRIVERAPP_ASFVOLT16_DRIVER */