aab3e8cfc6ef870a3184b53740575e4b39490dfc
[processor-sdk/performance-audio-sr.git] / processor_audio_sdk_1_00_00_00 / pasdk / common / aspDecOpCircBuf_common.c
2 /*
3 Copyright (c) 2016, Texas Instruments Incorporated - http://www.ti.com/
4 All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 *
10 * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 *
13 * Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the
16 * distribution.
17 *
18 * Neither the name of Texas Instruments Incorporated nor the names of
19 * its contributors may be used to endorse or promote products derived
20 * from this software without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
26 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
28 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
32 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 *
34 */
36 #include <xdc/std.h>
37 #include <xdc/runtime/Log.h>
38 #include <ti/sysbios/hal/Cache.h>
39 #include <ti/ipc/GateMP.h>
41 #include "aspDecOpCircBuf_common.h"
43 // Output log of circular buffer control variables (debug)
44 Int cbLog(
45 PAF_AST_DecOpCircBufCtl *pCbCtl,
46 Int8 cbIdx,
47 Int8 fullLog,
48 char *locInfo
49 )
50 {
51 IArg key;
52 GateMP_Handle gateHandle;
53 PAF_AST_DecOpCircBuf *pCb;
55 // Get gate handle
56 gateHandle = pCbCtl->gateHandle;
57 // Enter gate
58 key = GateMP_enter(gateHandle);
60 // Get circular buffer base pointer
61 pCb = &(*pCbCtl->pXDecOpCb)[cbIdx];
63 // Invalidate circular buffer configuration.
64 Cache_inv(pCb, sizeof(PAF_AST_DecOpCircBuf), Cache_Type_ALLD, 0);
65 Cache_wait();
67 Log_info1("CB: %s", (IArg)locInfo);
68 Log_info3("CB: readerActiveFlag=%d, writerActiveFlag=%d, emptyFlag=%d", pCb->readerActiveFlag, pCb->writerActiveFlag, pCb->emptyFlag);
69 Log_info4("CB: afRdIdx=%d, pcmRdIdx=%d, afWrtIdx=%d, numAfCb=%d", pCb->afRdIdx, pCb->pcmRdIdx,
70 pCb->afWrtIdx,
71 pCb->numAfCb);
72 if (fullLog)
73 {
74 Log_info1("CB: maxNumAfCb=%d", pCb->maxNumAfCb);
75 Log_info2("CB: decOpFrameLen=%d, strFrameLen=%d", pCb->decOpFrameLen, pCb->strFrameLen);
76 //Log_info1("cbWriteInit=%d", pCb->cbWriteAfInit);
77 }
79 // Leave the gate
80 GateMP_leave(gateHandle, key);
82 return ASP_DECOP_CB_SOK;
83 }