1 /*******************************************************************************
2 ################################################################################
3 # Copyright (c) [2017-2019] [Radisys] #
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 #
9 # http://www.apache.org/licenses/LICENSE-2.0 #
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 *******************************************************************************/
19 /********************************************************************20**
21 Name: Radisys Logging Framework
23 Desc: This file contains logging framework implementation.
26 *********************************************************************21*/
27 /**********************************************************************
28 @ description: This source file has SOC specific functions required for
30 ************************************************************************/
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
39 PUBLIC void rlInitL2SocSpecific(void);
40 PUBLIC void processL2LogBuff(void);
41 PUBLIC void rlGetL2LogBufPtr(void *mBuf,U32 *logLen,Data **logPtr);
42 PUBLIC void rlInvalidateL2LogsInCache(Data *ptr,U32 len);
44 extern void rlInitL2SocSpecific(void);
45 extern void processL2LogBuff(void);
46 extern void rlGetL2LogBufPtr(void *mBuf,U32 *logLen,Data **logPtr);
48 /**********************************************************************
50 **********************************************************************/