blob: 1633eca8b9bb5d7012d794296d15184de3a9f633 [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
Kim Kempfafa1ab42017-11-13 09:31:47 -080029#include <syslog.h>
root2ca2cc02017-11-03 19:51:57 +053030
Kim Kempfafa1ab42017-11-13 09:31:47 -080031#define ASFVOLT_ERROR (LOG_ERR)
32#define ASFVOLT_INFO (LOG_INFO)
33#define ASFVOLT_DEBUG (LOG_DEBUG)
34#define ASFVOLT_SYSLOG_NAME "volthad" /* syslog service name */
35
Rajeswara Raof6b4e6c2017-08-31 17:26:27 +053036#define ASFVOLT_MAX_PKT_SIZE 500
37#define ASFVOLT_MAX_DEVICE_ID_SIZE 50
38#define MAX_CHAR_LENGTH 20
Girish Gowdru9ebd8b22018-09-26 03:21:03 -070039#define MAX_REGID_LENGTH 36
Rajeswara Raof6b4e6c2017-08-31 17:26:27 +053040#define MAX_OMCI_MSG_LENGTH 44
41
Girish Gowdru9ebd8b22018-09-26 03:21:03 -070042#define BAL_ELEMENT_PRES 1
43
Rajeswara Raof6b4e6c2017-08-31 17:26:27 +053044char voltha_device_id[ASFVOLT_MAX_DEVICE_ID_SIZE];
Rajeswara Rao9f1cea12017-10-10 18:25:29 +053045unsigned int is_reboot;
Rajeswara Raof6b4e6c2017-08-31 17:26:27 +053046
47typedef struct BalCoreIpInfo
48{
Kim Kempfafa1ab42017-11-13 09:31:47 -080049 char bal_core_arg1[4];
50 char bal_core_ip_port[24];
51 char bal_core_arg2[4];
52 char bal_shared_lib_ip_port[24];
Rajeswara Raof6b4e6c2017-08-31 17:26:27 +053053}balCoreIpInfo;
54
Kim Kempfafa1ab42017-11-13 09:31:47 -080055#if 0 /* change to 1 to enable function/line to stdout w/syslog message*/
56#include <stdio.h>
57
58#define ASFVOLT_SYSLOG_MODE (LOG_CONS | LOG_PID | LOG_NDELAY)
59#define DEBUG_LOG(format, args...) \
60 printf(ASFVOLT_SYSLOG_NAME ": %s:%d: ", __FILE__, __LINE__); \
61 printf(format, ## args); \
62 putchar('\n');
63#else
64#define ASFVOLT_SYSLOG_MODE ( LOG_PID | LOG_NDELAY)
65#define DEBUG_LOG(format, args...)
66#endif
67
Kim Kempfb032b672017-09-11 18:40:34 -070068#define ASFVOLT_LOG(log_type, format, args...) \
Rajeswara Raof6b4e6c2017-08-31 17:26:27 +053069 if(log_type) \
70 {\
Kim Kempfafa1ab42017-11-13 09:31:47 -080071 syslog(log_type, "%s:%d: " format, __FILE__, __LINE__, ##args);\
72 DEBUG_LOG(format, ## args);\
Rajeswara Raof6b4e6c2017-08-31 17:26:27 +053073 }
74
Kim Kempfafa1ab42017-11-13 09:31:47 -080075#define ASFVOLT_LOG_LOC(log_type, file, line, format, args...) \
76 if(log_type) \
77 {\
78 syslog(log_type, "%s:%d: " format, file, line, ##args);\
79 DEBUG_LOG(format, ## args);\
80 }
Rajeswara Raof6b4e6c2017-08-31 17:26:27 +053081
82#define ASFVOLT_CFG_PROP_SET(cfg, obj, param, pram_prst, param_val) \
83 if(pram_prst)\
84 {\
85 BCMBAL_CFG_PROP_SET(&cfg, obj, param, param_val);\
86 }
87
Kim Kempfafa1ab42017-11-13 09:31:47 -080088#define ASFVOLT_HEX2LOG(prio, pFormat, pData, len) \
89 asfvolt_hexlog2(prio, __FILE__, __LINE__, pFormat, pData, len)
90
91
Rajeswara Raof6b4e6c2017-08-31 17:26:27 +053092/***************************************************************
93* *
94* Function Declarations *
95* *
96****************************************************************/
Kim Kempfafa1ab42017-11-13 09:31:47 -080097extern void asfvolt_hexlog2(int prio, const char *_file_loc, int _file_line, const char *pFormat, void* pData, size_t len);
Rajeswara Raof6b4e6c2017-08-31 17:26:27 +053098extern uint32_t asfvolt16_bal_init(BalInit *bal_init, balCoreIpInfo *coreInfo);
99extern uint32_t asfvolt16_bal_finish(void);
100extern uint32_t bal_register_indication_cbs(void);
101extern uint32_t asfvolt16_bal_cfg_set(BalCfg *cfg);
102extern uint32_t asfvolt16_bal_cfg_clear(BalKey *key);
Girish Gowdru9ebd8b22018-09-26 03:21:03 -0700103extern uint32_t asfvolt16_bal_cfg_get(BalCfg *cfg);
Rajeswara Raof6b4e6c2017-08-31 17:26:27 +0530104extern void asfvolt16_send_omci_msg(uint16_t olt_no, uint32_t onu_nu, char* packet_to_send);
Rajeswara Rao92e3fd42017-10-26 10:47:03 +0530105extern uint32_t asfvolt16_bal_stats_get(BalIntfType intf_type, uint32_t intf_id, BalInterfaceStatData *statData,
106 BalInterfaceKey *statKey);
Rajeswara Raof6b4e6c2017-08-31 17:26:27 +0530107grpc_c_client_t *client;
108
109#endif /* DRIVERAPP_ASFVOLT16_DRIVER */