i2s.h
上传用户:qiulin1960
上传日期:2013-10-16
资源大小:2844k
文件大小:5k
源码类别:

Windows CE

开发平台:

Windows_Unix

  1. //
  2. // Copyright (c) Microsoft Corporation.  All rights reserved.
  3. //
  4. //
  5. // Use of this source code is subject to the terms of the Microsoft end-user
  6. // license agreement (EULA) under which you licensed this SOFTWARE PRODUCT.
  7. // If you did not accept the terms of the EULA, you are not authorized to use
  8. // this source code. For a copy of the EULA, please see the LICENSE.RTF on your
  9. // install media.
  10. //
  11. /*++
  12. THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  13. ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  14. THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  15. PARTICULAR PURPOSE.
  16.    
  17. Module Name: I2S.CPP
  18. Abstract: I2S Interface Routines for Samsung SC2410 CPU
  19.   
  20. Environment: Samsung SC2410 CPU and Windows 3.0 (or later)
  21.     
  22. -*/
  23. #include <windows.h>
  24. #include "s2440.h"
  25. //===================== Register Configuration Constants ======================
  26. #define IIS_INTERNAL_CLOCK_ENABLE (1<<17) // Enable CPU clock to IIS controller
  27. //----- GPIO Configuration Masks -----
  28. #define ENABLE_I2SSDO 0x00000200
  29. #define ENABLE_I2SSDI 0x00000080
  30. #define ENABLE_I2SCDCLK 0x00000020
  31. #define ENABLE_I2SSCLK 0x00000008
  32. #define ENABLE_I2SLRCLK 0x00000002
  33. #define DISABLE_I2S_PULLUPS 0x0000001F
  34. //----- Register definitions for IISCON control register (global config register) -----
  35. #define LR_CHANNEL_INDEX 0x00000100 // Left/right channel index (read-only)
  36. #define TRANSMIT_FIFO_READY 0x00000080 // Indicates transmit FIFO is ready (read-only)
  37. #define RECEIVE_FIFO_READY 0x00000040 // Indicates receive FIFO is ready (read-only)
  38. #define TRANSMIT_DMA_REQUEST_ENABLE 0x00000020 // Enables transmit DMA request
  39. #define RECEIVE_DMA_REQUEST_ENABLE 0x00000010 // Enables receive DMA request
  40. #define TRANSMIT_IDLE_CMD 0x00000008 // Pauses transmit
  41. #define RECEIVE_IDLE_CMD 0x00000004 // Pauses receive
  42. #define IIS_PRESCALER_ENABLE 0x00000002 // Enables clock prescaler
  43. #define IIS_INTERFACE_ENABLE 0x00000001 // Enables IIS controller
  44. //----- Register definitions for IISMOD status register (global status register) -----
  45. #define IIS_MASTER_MODE 0x00000000 // Selects master/slave mode
  46. #define IIS_SLAVE_MODE 0x00000100
  47. #define IIS_NOTRANSFER_MODE 0x00000000 // Selects transfer mode
  48. #define IIS_RECEIVE_MODE 0x00000040
  49. #define IIS_TRANSMIT_MODE 0x00000080
  50. #define IIS_TRANSMIT_RECEIVE_MODE 0x000000C0
  51. #define ACTIVE_CHANNEL_LEFT 0x00000000 // Selects active channel
  52. #define ACTIVE_CHANNEL_RIGHT 0x00000020
  53. #define SERIAL_INTERFACE_IIS_COMPAT 0x00000000 // Selects serial interface format
  54. #define SERIAL_INTERFACE_MSBL_COMPAT 0x00000010
  55. #define DATA_8_BITS_PER_CHANNEL 0x00000000 // Selects # of data bits per channel
  56. #define DATA_16_BITS_PER_CHANNEL 0x00000008
  57. #define MASTER_CLOCK_FREQ_256fs 0x00000000 // Selects master clock frequency
  58. #define MASTER_CLOCK_FREQ_384fs 0x00000004
  59. #define SERIAL_BIT_CLOCK_FREQ_16fs 0x00000000 // Selects serial data bit clock frequency
  60. #define SERIAL_BIT_CLOCK_FREQ_32fs 0x00000001
  61. #define SERIAL_BIT_CLOCK_FREQ_48fs 0x00000002
  62. //----- Register definitions for IISPSR control register (global config register) -----
  63. // FORMAT: bits[9:5] - Prescaler Control A
  64. // bits[4:0] - Prescaler Control B
  65. //
  66. // Range: 0-31 and the division factor is N+1 (a.k.a. 1-32)
  67. //
  68. // The I2SLRCLK frequency is determined as follows:
  69. //
  70. // I2SLRCLK = CODECLK / I2SCDCLK and (prescaler+1) = PCLK / CODECLK
  71. //
  72. // Thus, rearranging the equations a bit we can see that:
  73. //
  74. // prescaler = (PCLK / CODECLK) - 1 
  75. // or
  76. // prescaler = ((PCLK / (IS2LRCLK * IS2CDCLK)) - 1
  77. //
  78. // Here are some popular values for IS2LRCLK:
  79. //
  80. #define IS2LRCLK_800 800
  81. #define IS2LRCLK_11025 11025
  82. #define IS2LRCLK_16000 16000
  83. #define IS2LRCLK_22050 22050
  84. #define IS2LRCLK_32000 32000
  85. #define IS2LRCLK_44100 44100
  86. #define IS2LRCLK_48000 48000
  87. #define IS2LRCLK_64000 64000
  88. #define IS2LRCLK_88200 88200
  89. #define IS2LRCLK_96000 96000
  90. //----- Register definitions for IISFCON control register (global config register) -----
  91. #define TRANSMIT_FIFO_ACCESS_NORMAL 0x00000000 // Selects the transmit FIFO access mode
  92. #define TRANSMIT_FIFO_ACCESS_DMA 0x00008000
  93. #define RECEIVE_FIFO_ACCESS_NORMAL 0x00000000 // Selects the receive FIFO access mode
  94. #define RECEIVE_FIFO_ACCESS_DMA 0x00004000
  95. #define TRANSMIT_FIFO_ENABLE 0x00002000 // Enables transmit FIFO
  96. #define RECEIVE_FIFO_ENABLE 0x00001000 // Enables receive FIFO
  97. //
  98. // READ-ONLY Fields: bits[11:6] - Transmit FIFO datacount
  99. // bits[5:0]  - Receive FIFO datacount
  100. //----- Register definitions for IISFIFO control register (global config register) -----
  101. // NOTE: This register is used to access the transmit/receive FIFO
  102. #define MAX_TRANSMIT_FIFO_ENTRIES 24
  103. #define MAX_RECEIVE_FIFO_ENTRIES 24
  104. //=============================================================================
  105. //-------------------------- Public Interface ------------------------------
  106. BOOL I2S_Init();
  107. BOOL I2S_Deinit();
  108. BOOL I2S_WriteData(LPWORD lpBuff, DWORD dwLen);
  109. //-------------------- Private Interface (Helper routines) ------------------
  110. VOID StartI2SClock(VOID);
  111. VOID StopI2SClock(VOID);
  112. VOID SetI2SClockRate(DWORD ClockRate);