mcbsp.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:8k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/include/asm-arm/arch-omap/gpio.h
  3.  *
  4.  * Defines for Multi-Channel Buffered Serial Port
  5.  *
  6.  * Copyright (C) 2002 RidgeRun, Inc.
  7.  * Author: Steve Johnson
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  22.  *
  23.  */
  24. #ifndef __ASM_ARCH_OMAP_MCBSP_H
  25. #define __ASM_ARCH_OMAP_MCBSP_H
  26. #include <asm/arch/hardware.h>
  27. #define OMAP730_MCBSP1_BASE 0xfffb1000
  28. #define OMAP730_MCBSP2_BASE 0xfffb1800
  29. #define OMAP1510_MCBSP1_BASE 0xe1011800
  30. #define OMAP1510_MCBSP2_BASE 0xfffb1000
  31. #define OMAP1510_MCBSP3_BASE 0xe1017000
  32. #define OMAP1610_MCBSP1_BASE 0xe1011800
  33. #define OMAP1610_MCBSP2_BASE 0xfffb1000
  34. #define OMAP1610_MCBSP3_BASE 0xe1017000
  35. #define OMAP_MCBSP_REG_DRR2 0x00
  36. #define OMAP_MCBSP_REG_DRR1 0x02
  37. #define OMAP_MCBSP_REG_DXR2 0x04
  38. #define OMAP_MCBSP_REG_DXR1 0x06
  39. #define OMAP_MCBSP_REG_SPCR2 0x08
  40. #define OMAP_MCBSP_REG_SPCR1 0x0a
  41. #define OMAP_MCBSP_REG_RCR2 0x0c
  42. #define OMAP_MCBSP_REG_RCR1 0x0e
  43. #define OMAP_MCBSP_REG_XCR2 0x10
  44. #define OMAP_MCBSP_REG_XCR1 0x12
  45. #define OMAP_MCBSP_REG_SRGR2 0x14
  46. #define OMAP_MCBSP_REG_SRGR1 0x16
  47. #define OMAP_MCBSP_REG_MCR2 0x18
  48. #define OMAP_MCBSP_REG_MCR1 0x1a
  49. #define OMAP_MCBSP_REG_RCERA 0x1c
  50. #define OMAP_MCBSP_REG_RCERB 0x1e
  51. #define OMAP_MCBSP_REG_XCERA 0x20
  52. #define OMAP_MCBSP_REG_XCERB 0x22
  53. #define OMAP_MCBSP_REG_PCR0 0x24
  54. #define OMAP_MCBSP_REG_RCERC 0x26
  55. #define OMAP_MCBSP_REG_RCERD 0x28
  56. #define OMAP_MCBSP_REG_XCERC 0x2A
  57. #define OMAP_MCBSP_REG_XCERD 0x2C
  58. #define OMAP_MCBSP_REG_RCERE 0x2E
  59. #define OMAP_MCBSP_REG_RCERF 0x30
  60. #define OMAP_MCBSP_REG_XCERE 0x32
  61. #define OMAP_MCBSP_REG_XCERF 0x34
  62. #define OMAP_MCBSP_REG_RCERG 0x36
  63. #define OMAP_MCBSP_REG_RCERH 0x38
  64. #define OMAP_MCBSP_REG_XCERG 0x3A
  65. #define OMAP_MCBSP_REG_XCERH 0x3C
  66. #define OMAP_MAX_MCBSP_COUNT 3
  67. #define OMAP_MCBSP_READ(base, reg) __raw_readw((base) + OMAP_MCBSP_REG_##reg)
  68. #define OMAP_MCBSP_WRITE(base, reg, val) __raw_writew((val), (base) + OMAP_MCBSP_REG_##reg)
  69. /************************** McBSP SPCR1 bit definitions ***********************/
  70. #define RRST 0x0001
  71. #define RRDY 0x0002
  72. #define RFULL 0x0004
  73. #define RSYNC_ERR 0x0008
  74. #define RINTM(value) ((value)<<4) /* bits 4:5 */
  75. #define ABIS 0x0040
  76. #define DXENA 0x0080
  77. #define CLKSTP(value) ((value)<<11) /* bits 11:12 */
  78. #define RJUST(value) ((value)<<13) /* bits 13:14 */
  79. #define DLB 0x8000
  80. /************************** McBSP SPCR2 bit definitions ***********************/
  81. #define XRST 0x0001
  82. #define XRDY 0x0002
  83. #define XEMPTY 0x0004
  84. #define XSYNC_ERR 0x0008
  85. #define XINTM(value) ((value)<<4) /* bits 4:5 */
  86. #define GRST 0x0040
  87. #define FRST 0x0080
  88. #define SOFT 0x0100
  89. #define FREE 0x0200
  90. /************************** McBSP PCR bit definitions *************************/
  91. #define CLKRP 0x0001
  92. #define CLKXP 0x0002
  93. #define FSRP 0x0004
  94. #define FSXP 0x0008
  95. #define DR_STAT 0x0010
  96. #define DX_STAT 0x0020
  97. #define CLKS_STAT 0x0040
  98. #define SCLKME 0x0080
  99. #define CLKRM 0x0100
  100. #define CLKXM 0x0200
  101. #define FSRM 0x0400
  102. #define FSXM 0x0800
  103. #define RIOEN 0x1000
  104. #define XIOEN 0x2000
  105. #define IDLE_EN 0x4000
  106. /************************** McBSP RCR1 bit definitions ************************/
  107. #define RWDLEN1(value) ((value)<<5) /* Bits 5:7 */
  108. #define RFRLEN1(value) ((value)<<8) /* Bits 8:14 */
  109. /************************** McBSP XCR1 bit definitions ************************/
  110. #define XWDLEN1(value) ((value)<<5) /* Bits 5:7 */
  111. #define XFRLEN1(value) ((value)<<8) /* Bits 8:14 */
  112. /*************************** McBSP RCR2 bit definitions ***********************/
  113. #define RDATDLY(value) (value) /* Bits 0:1 */
  114. #define RFIG 0x0004
  115. #define RCOMPAND(value) ((value)<<3) /* Bits 3:4 */
  116. #define RWDLEN2(value) ((value)<<5) /* Bits 5:7 */
  117. #define RFRLEN2(value) ((value)<<8) /* Bits 8:14 */
  118. #define RPHASE 0x8000
  119. /*************************** McBSP XCR2 bit definitions ***********************/
  120. #define XDATDLY(value) (value) /* Bits 0:1 */
  121. #define XFIG 0x0004
  122. #define XCOMPAND(value) ((value)<<3) /* Bits 3:4 */
  123. #define XWDLEN2(value) ((value)<<5) /* Bits 5:7 */
  124. #define XFRLEN2(value) ((value)<<8) /* Bits 8:14 */
  125. #define XPHASE 0x8000
  126. /************************* McBSP SRGR1 bit definitions ************************/
  127. #define CLKGDV(value) (value) /* Bits 0:7 */
  128. #define FWID(value) ((value)<<8) /* Bits 8:15 */
  129. /************************* McBSP SRGR2 bit definitions ************************/
  130. #define FPER(value) (value) /* Bits 0:11 */
  131. #define FSGM 0x1000
  132. #define CLKSM 0x2000
  133. #define CLKSP 0x4000
  134. #define GSYNC 0x8000
  135. /************************* McBSP MCR1 bit definitions *************************/
  136. #define RMCM 0x0001
  137. #define RCBLK(value) ((value)<<2) /* Bits 2:4 */
  138. #define RPABLK(value) ((value)<<5) /* Bits 5:6 */
  139. #define RPBBLK(value) ((value)<<7) /* Bits 7:8 */
  140. /************************* McBSP MCR2 bit definitions *************************/
  141. #define XMCM(value) (value) /* Bits 0:1 */
  142. #define XCBLK(value) ((value)<<2) /* Bits 2:4 */
  143. #define XPABLK(value) ((value)<<5) /* Bits 5:6 */
  144. #define XPBBLK(value) ((value)<<7) /* Bits 7:8 */
  145. /* we don't do multichannel for now */
  146. struct omap_mcbsp_reg_cfg {
  147. u16 spcr2;
  148. u16 spcr1;
  149. u16 rcr2;
  150. u16 rcr1;
  151. u16 xcr2;
  152. u16 xcr1;
  153. u16 srgr2;
  154. u16 srgr1;
  155. u16 mcr2;
  156. u16 mcr1;
  157. u16 pcr0;
  158. u16 rcerc;
  159. u16 rcerd;
  160. u16 xcerc;
  161. u16 xcerd;
  162. u16 rcere;
  163. u16 rcerf;
  164. u16 xcere;
  165. u16 xcerf;
  166. u16 rcerg;
  167. u16 rcerh;
  168. u16 xcerg;
  169. u16 xcerh;
  170. };
  171. typedef enum {
  172. OMAP_MCBSP1 = 0,
  173. OMAP_MCBSP2,
  174. OMAP_MCBSP3,
  175. } omap_mcbsp_id;
  176. typedef enum {
  177. OMAP_MCBSP_WORD_8 = 0,
  178. OMAP_MCBSP_WORD_12,
  179. OMAP_MCBSP_WORD_16,
  180. OMAP_MCBSP_WORD_20,
  181. OMAP_MCBSP_WORD_24,
  182. OMAP_MCBSP_WORD_32,
  183. } omap_mcbsp_word_length;
  184. typedef enum {
  185. OMAP_MCBSP_CLK_RISING = 0,
  186. OMAP_MCBSP_CLK_FALLING,
  187. } omap_mcbsp_clk_polarity;
  188. typedef enum {
  189. OMAP_MCBSP_FS_ACTIVE_HIGH = 0,
  190. OMAP_MCBSP_FS_ACTIVE_LOW,
  191. } omap_mcbsp_fs_polarity;
  192. typedef enum {
  193. OMAP_MCBSP_CLK_STP_MODE_NO_DELAY = 0,
  194. OMAP_MCBSP_CLK_STP_MODE_DELAY,
  195. } omap_mcbsp_clk_stp_mode;
  196. /******* SPI specific mode **********/
  197. typedef enum {
  198. OMAP_MCBSP_SPI_MASTER = 0,
  199. OMAP_MCBSP_SPI_SLAVE,
  200. } omap_mcbsp_spi_mode;
  201. struct omap_mcbsp_spi_cfg {
  202. omap_mcbsp_spi_mode spi_mode;
  203. omap_mcbsp_clk_polarity rx_clock_polarity;
  204. omap_mcbsp_clk_polarity tx_clock_polarity;
  205. omap_mcbsp_fs_polarity fsx_polarity;
  206. u8 clk_div;
  207. omap_mcbsp_clk_stp_mode clk_stp_mode;
  208. omap_mcbsp_word_length word_length;
  209. };
  210. void omap_mcbsp_config(unsigned int id, const struct omap_mcbsp_reg_cfg * config);
  211. int omap_mcbsp_request(unsigned int id);
  212. void omap_mcbsp_free(unsigned int id);
  213. void omap_mcbsp_start(unsigned int id);
  214. void omap_mcbsp_stop(unsigned int id);
  215. void omap_mcbsp_xmit_word(unsigned int id, u32 word);
  216. u32 omap_mcbsp_recv_word(unsigned int id);
  217. int omap_mcbsp_xmit_buffer(unsigned int id, dma_addr_t buffer, unsigned int length);
  218. int omap_mcbsp_recv_buffer(unsigned int id, dma_addr_t buffer, unsigned int length);
  219. /* SPI specific API */
  220. void omap_mcbsp_set_spi_mode(unsigned int id, const struct omap_mcbsp_spi_cfg * spi_cfg);
  221. /* Polled read/write functions */
  222. int omap_mcbsp_pollread(unsigned int id, u16 * buf);
  223. int omap_mcbsp_pollwrite(unsigned int id, u16 buf);
  224. #endif