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

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.11.00.00 11-04-03 (ddk-b13)" */
  9. /* 
  10.  *  ======== dsk5510_dma_aic23.h ========
  11.  * 
  12.  *  This file declares an implementation of the IOM interface for
  13.  *  performing streaming I/O with the TI AIC23 audio codec on the 
  14.  *  5510 DSK containing an AIC23 codec, using the DMA for block transfer.
  15.  */
  16. #ifndef DSK5510_DMA_AIC23_
  17. #define DSk5510_DMA_AIC23_
  18. #include <iom.h>
  19. #include <aic23.h>
  20. /* Version number definition */
  21. #define DSK5510_DMA_AIC23_VERSION_1  0xAB01
  22. #define DSK5510_DMA_AIC23_RXDMAID_DEFAULT       4
  23. #define DSK5510_DMA_AIC23_TXDMAID_DEFAULT       5
  24. #define DSK5510_DMA_AIC23_PORTTYPE_DARAM 0
  25. #define DSK5510_DMA_AIC23_PORTTYPE_SARAM 1
  26. #define DSK5510_DMA_AIC23_PORTTYPE_EMIF  2
  27. #define DSK5510_DMA_AIC23_PORTTYPE_DEFAULT DSK5510_DMA_AIC23_PORTTYPE_DARAM
  28. #define DSK5510_DMA_AIC23_IER_MASK_DEFAULT 1
  29. /* Driver function table to be used by applications */
  30. extern IOM_Fxns DSK5510_DMA_AIC23_FXNS;
  31.                 
  32. /* Setup structure for the driver (contains only codec registers) */
  33. typedef struct DSK5510_DMA_AIC23_DevParams {
  34.     Int                  versionId;        /* version number */
  35.     Uns                  rxDmaId;          /* receive channel */
  36.     Uns                  txDmaId;          /* transmit channel */
  37.     Uns                  dmaPortType;      /* DMA port type */
  38.     AIC23_Params         aic23;            /* codec parameters (registers) */
  39.     Uns                  rxIerMask[2];     /* receiver interrupt mask */
  40.     Uns                  txIerMask[2];     /* transmitter interrupt mask */
  41. } DSK5510_DMA_AIC23_DevParams;
  42. #define DSK5510_DMA_AIC23_DEVPARAMS_DEFAULT {   
  43.     DSK5510_DMA_AIC23_VERSION_1,                
  44.     DSK5510_DMA_AIC23_RXDMAID_DEFAULT,          
  45.     DSK5510_DMA_AIC23_TXDMAID_DEFAULT,          
  46.     DSK5510_DMA_AIC23_PORTTYPE_DEFAULT,         
  47.     AIC23_DEFAULTPARAMS,                        
  48.     {                                           
  49.         DSK5510_DMA_AIC23_IER_MASK_DEFAULT,     
  50.         DSK5510_DMA_AIC23_IER_MASK_DEFAULT      
  51.     },                                          
  52.     {                                           
  53.         DSK5510_DMA_AIC23_IER_MASK_DEFAULT,     
  54.         DSK5510_DMA_AIC23_IER_MASK_DEFAULT      
  55.     }                                           
  56. }
  57. /* Controller init function -- initializes driver variables, if any */
  58. extern Void DSK5510_DMA_AIC23_init( Void );
  59. #endif