source: svn/newcon3bcm2_21bu/nexus/modules/audio/7552/include/nexus_audio_dsp.h

Last change on this file was 76, checked in by megakiss, 10 years ago

1W 대기전력을 만족시키기 위하여 POWEROFF시 튜너를 Standby 상태로 함

  • Property svn:executable set to *
File size: 5.2 KB
Line 
1/***************************************************************************
2*     (c)2004-2011 Broadcom Corporation
3
4*  This program is the proprietary software of Broadcom Corporation and/or its licensors,
5*  and may only be used, duplicated, modified or distributed pursuant to the terms and
6*  conditions of a separate, written license agreement executed between you and Broadcom
7*  (an "Authorized License").  Except as set forth in an Authorized License, Broadcom grants
8*  no license (express or implied), right to use, or waiver of any kind with respect to the
9*  Software, and Broadcom expressly reserves all rights in and to the Software and all
10*  intellectual property rights therein.  IF YOU HAVE NO AUTHORIZED LICENSE, THEN YOU
11*  HAVE NO RIGHT TO USE THIS SOFTWARE IN ANY WAY, AND SHOULD IMMEDIATELY
12*  NOTIFY BROADCOM AND DISCONTINUE ALL USE OF THE SOFTWARE. 
13*   
14*  Except as expressly set forth in the Authorized License,
15*   
16*  1.     This program, including its structure, sequence and organization, constitutes the valuable trade
17*  secrets of Broadcom, and you shall use all reasonable efforts to protect the confidentiality thereof,
18*  and to use this information only in connection with your use of Broadcom integrated circuit products.
19*   
20*  2.     TO THE MAXIMUM EXTENT PERMITTED BY LAW, THE SOFTWARE IS PROVIDED "AS IS"
21*  AND WITH ALL FAULTS AND BROADCOM MAKES NO PROMISES, REPRESENTATIONS OR
22*  WARRANTIES, EITHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, WITH RESPECT TO
23*  THE SOFTWARE.  BROADCOM SPECIFICALLY DISCLAIMS ANY AND ALL IMPLIED WARRANTIES
24*  OF TITLE, MERCHANTABILITY, NONINFRINGEMENT, FITNESS FOR A PARTICULAR PURPOSE,
25*  LACK OF VIRUSES, ACCURACY OR COMPLETENESS, QUIET ENJOYMENT, QUIET POSSESSION
26*  OR CORRESPONDENCE TO DESCRIPTION. YOU ASSUME THE ENTIRE RISK ARISING OUT OF
27*  USE OR PERFORMANCE OF THE SOFTWARE.
28
29*  3.     TO THE MAXIMUM EXTENT PERMITTED BY LAW, IN NO EVENT SHALL BROADCOM OR ITS
30*  LICENSORS BE LIABLE FOR (i) CONSEQUENTIAL, INCIDENTAL, SPECIAL, INDIRECT, OR
31*  EXEMPLARY DAMAGES WHATSOEVER ARISING OUT OF OR IN ANY WAY RELATING TO YOUR
32*  USE OF OR INABILITY TO USE THE SOFTWARE EVEN IF BROADCOM HAS BEEN ADVISED OF
33*  THE POSSIBILITY OF SUCH DAMAGES; OR (ii) ANY AMOUNT IN EXCESS OF THE AMOUNT
34*  ACTUALLY PAID FOR THE SOFTWARE ITSELF OR U.S. $1, WHICHEVER IS GREATER. THESE
35*  LIMITATIONS SHALL APPLY NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF
36*  ANY LIMITED REMEDY.
37*
38* $brcm_Workfile: nexus_audio_dsp.h $
39* $brcm_Revision: 2 $
40* $brcm_Date: 11/3/11 6:53p $
41*
42* API Description:
43*   API name: AudioDsp
44*    Specific APIs related to audio DSP control and debug.
45*
46* Revision History:
47*
48* $brcm_Log: /nexus/modules/audio/7422/include/nexus_audio_dsp.h $
49*
50* 2   11/3/11 6:53p jgarrett
51* SW7422-400: Enabling audio debug logs on 40nm APE chips
52*
53* 1   11/2/11 6:26p jgarrett
54* SW7422-400: Adding routines for audio DSP debug
55*
56***************************************************************************/
57#ifndef NEXUS_AUDIO_DSP_H__
58#define NEXUS_AUDIO_DSP_H__
59
60/*=************************************
61Interface: AudioDsp
62
63Header file: nexus_audio_dsp.h
64
65Module: Audio
66
67Description: Audio DSP Control and debug
68
69**************************************/
70
71#include "nexus_types.h"
72
73/***************************************************************************
74Summary:
75Types of audio DSP debug information
76***************************************************************************/
77typedef enum NEXUS_AudioDspDebugType
78{
79    NEXUS_AudioDspDebugType_eDramMessage,
80    NEXUS_AudioDspDebugType_eUartMessage,
81    NEXUS_AudioDspDebugType_eCoreDump,
82    NEXUS_AudioDspDebugType_eMax
83} NEXUS_AudioDspDebugType;
84
85/***************************************************************************
86Summary:
87Audio DSP Debug Settings
88 
89Description:
90Debug-related settings for the audio DSP.
91 
92See Also:
93NEXUS_AudioModuleInitSettings
94***************************************************************************/
95typedef struct NEXUS_AudioDspDebugSettings
96{
97    struct
98    {
99        bool enabled;
100        unsigned bufferSize;        /* If enabled = true, this specifies the debug buffer size in bytes. 
101                                       Only required if you wish to override the default debug settings. */
102    } typeSettings[NEXUS_AudioDspDebugType_eMax];
103} NEXUS_AudioDspDebugSettings;
104
105/***************************************************************************
106Summary:
107Get DSP Firmware Debug Data
108***************************************************************************/
109NEXUS_Error NEXUS_AudioDsp_GetDebugBuffer(
110    unsigned dspIndex,      /* Ranges from 0 to NEXUS_NUM_AUDIO_DSP-1 */
111    NEXUS_AudioDspDebugType debugType,
112    const void **pBuffer,   /* [out] attr{memory=cached} Pointer to debug data */
113    size_t *pBufferSize     /* [out] size of buffer in bytes */
114    );
115
116/***************************************************************************
117Summary:
118Consume DSP Firmware Debug Data.
119***************************************************************************/
120NEXUS_Error NEXUS_AudioDsp_DebugReadComplete(
121    unsigned dspIndex,      /* Ranges from 0 to NEXUS_NUM_AUDIO_DSP-1 */
122    NEXUS_AudioDspDebugType debugType,
123    size_t bytesRead        /* Number of bytes consumed from the debug buffer */
124    );
125
126#endif /* #ifndef NEXUS_AUDIO_DSP_H__ */
127
Note: See TracBrowser for help on using the repository browser.