c55xx_dma_mcbsp.h

来自「DSP体系结构实现与应用源代码」· C头文件 代码 · 共 52 行

H
52
字号
/*
 *  Copyright 2003 by Texas Instruments Incorporated.
 *  All rights reserved. Property of Texas Instruments Incorporated.
 *  Restricted rights to use, duplicate or disclose this code are
 *  granted through contract.
 *  
 */
/* "@(#) ReferenceFrameworks 2.20.00.08 07-18-03 (swat-f02)" */
/*
 *  ======== c55xx_dma_mcbsp.h ========
 *
 *  This file declares an implementation of the IOM interface for
 *  performing streaming I/O with audio codec's on the TI
 *  C55xx DSP's using the DMA with the MCBSP connected to the codec. 
 */

#ifndef C55XX_DMA_MCBSP_
#define C55XX_DMA_MCBSP_

#include <iom.h>

#include <csl.h>
#include <csl_mcbsp.h>
#include <csl_dma.h>

/* Version Number definition */
#define C55XX_DMA_MCBSP_VERSION_1 0xAB01



/* Driver function table to be used by applications. */
extern IOM_Fxns C55XX_DMA_MCBSP_FXNS;

typedef struct C55XX_DMA_MCBSP_DevParams {
    Int           versionId; /* version number to be set by application */
    Uns           rxDmaId; /* rxDmaId */
    Uns           txDmaId; /* txDmaId */
    MCBSP_Config  *mcbspCfg; /* mcbsp config handle */
    Uns           rxIerMask[2]; /* receiver interrupt mask */
    Uns           txIerMask[2]; /* transmitter interrupt mask */
} C55XX_DMA_MCBSP_DevParams;

typedef struct C55XX_DMA_MCBSP_ChanParams {
    DMA_Config          *dmaCfg;
} C55XX_DMA_MCBSP_ChanParams;

/* Mini-driver init function -- initializes driver variables, if any */
extern Void C55XX_DMA_MCBSP_init( Void );

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?