dsk5416_dma_pcm3002.h
上传用户:dahaojd
上传日期:2008-01-29
资源大小:14357k
文件大小:2k
源码类别:

DSP编程

开发平台:

C/C++

  1. /*
  2.  *  Copyright 2003 by Texas Instruments Incorporated.
  3.  *  All rights reserved. Property of Texas Instruments Incorporated.
  4.  *  Restricted rights to use, duplicate or disclose this code are
  5.  *  granted through contract.
  6.  *  
  7.  */
  8. /* "@(#) DDK 1.10.00.23 07-02-03 (ddk-b12)" */
  9. /* 
  10.  *  ======== dsk5416_dma_pcm3002.h ========
  11.  * 
  12.  *  This file declares an implementation of the IOM interface for
  13.  *  performaing streaming I/O with the TI PCM3002 audio codec on the TI
  14.  *  5416 DSP Starter Kit (DSK) using DMA and McBSP.  
  15.  */
  16. #ifndef DSK5416_DMA_PCM3002_
  17. #define DSK5416_DMA_PCM3002_
  18. #include <iom.h>
  19. #include <dsk5416_pcm3002.h>
  20. /* Version Number definition */
  21. #define DSK5416_DMA_PCM3002_VERSION_1 0xAB01
  22. #define DSK5416_DMA_PCM3002_RXDMAID_DEFAULT     4
  23. #define DSK5416_DMA_PCM3002_TXDMAID_DEFAULT     5
  24. #define DSK5416_DMA_PCM3002_INTR_MASK_DEFAULT 1
  25. /* Driver function table to be used by applications. */
  26. extern IOM_Fxns DSK5416_DMA_PCM3002_FXNS;
  27. /* Setup device parameter structure for the driver */
  28. typedef struct DSK5416_DMA_PCM3002_DevParams {
  29.     Int                    versionId;  /* Version number to be set by app */
  30.     Uns                    rxDmaId;
  31.     Uns                    txDmaId;
  32.     DSK5416_PCM3002_Config pcm3002;     /* codec parameters (registers) */
  33.     Uns                    rxIntrMask;
  34.     Uns                    txIntrMask;
  35. } DSK5416_DMA_PCM3002_DevParams;
  36. #define DSK5416_DMA_PCM3002_DEVPARAMS_DEFAULT { 
  37.     DSK5416_DMA_PCM3002_VERSION_1,              
  38.     DSK5416_DMA_PCM3002_RXDMAID_DEFAULT,        
  39.     DSK5416_DMA_PCM3002_TXDMAID_DEFAULT,        
  40.     PCM3002_DEFAULTCONFIG,                      
  41.     DSK5416_DMA_PCM3002_INTR_MASK_DEFAULT,      
  42.     DSK5416_DMA_PCM3002_INTR_MASK_DEFAULT       
  43. }
  44. /* Mini-driver init function -- initializes driver variables, if any */
  45. extern Void DSK5416_DMA_PCM3002_init( Void );
  46. #endif