Enabled timer at MAC and SCH [Issue-ID: ODUHIGH-283]
[o-du/l2.git] / src / rlog / rl_soc.h
1 /*******************************************************************************
2 ################################################################################
3 #   Copyright (c) [2017-2019] [Radisys]                                        #
4 #                                                                              #
5 #   Licensed under the Apache License, Version 2.0 (the "License");            #
6 #   you may not use this file except in compliance with the License.           #
7 #   You may obtain a copy of the License at                                    #
8 #                                                                              #
9 #       http://www.apache.org/licenses/LICENSE-2.0                             #
10 #                                                                              #
11 #   Unless required by applicable law or agreed to in writing, software        #
12 #   distributed under the License is distributed on an "AS IS" BASIS,          #
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #
14 #   See the License for the specific language governing permissions and        #
15 #   limitations under the License.                                             #
16 ################################################################################
17 *******************************************************************************/
18
19 /********************************************************************20**
20
21      Name:     Radisys Logging Framework
22      Type:     C source file
23      Desc:     This file contains logging framework implementation.
24      File:     rl_soc.c
25
26 *********************************************************************21*/
27 /**********************************************************************
28  @ description: This source file has SOC specific functions required for 
29  logging framework
30 ************************************************************************/
31
32 #define L2LOG_BUFF_SIZE 10000
33 #define L2LOG_BUFF_BLOCK_SIZE L2LOG_BUFF_SIZE/4
34 #define RLOGTICKSCNTTOPRCL2LOGS 10
35 #define TENB_L2_PROC_ID 1
36 #define RLOG_LIMIT_L2_COUNT 100
37 #define RLOG_LIMIT_L3_COUNT 500
38
39 void rlInitL2SocSpecific(void);
40 void processL2LogBuff(void);
41 void rlGetL2LogBufPtr(void *mBuf,uint32_t *logLen,Data **logPtr);
42 void rlInvalidateL2LogsInCache(Data *ptr,uint32_t   len);
43
44 void rlInitL2SocSpecific(void);
45 void processL2LogBuff(void);
46 void rlGetL2LogBufPtr(void *mBuf,uint32_t *logLen,Data **logPtr);
47
48 /**********************************************************************
49          End of file
50 **********************************************************************/