RTEMS  5.0.0
lpc-i2s.h
Go to the documentation of this file.
1 
9 /*
10  * Copyright (c) 2010 embedded brains GmbH. All rights reserved.
11  *
12  * embedded brains GmbH
13  * Obere Lagerstr. 30
14  * 82178 Puchheim
15  * Germany
16  * <rtems@embedded-brains.de>
17  *
18  * The license and distribution terms for this file may be
19  * found in the file LICENSE in this distribution or at
20  * http://www.rtems.org/license/LICENSE.
21  */
22 
23 #ifndef LIBBSP_ARM_SHARED_LPC_I2S_H
24 #define LIBBSP_ARM_SHARED_LPC_I2S_H
25 
26 #include <bsp/utility.h>
27 
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31 
46 typedef struct {
47  uint32_t dao;
48  uint32_t dai;
49  uint32_t txfifo;
50  uint32_t rxfifo;
51  uint32_t state;
52  uint32_t dma [2];
53  uint32_t irq;
54  uint32_t txrate;
55  uint32_t rxrate;
56 } lpc_i2s;
57 
64 #define I2S_DAIO_WORDWIDTH(val) BSP_FLD32(val, 0, 1)
65 #define I2S_DAIO_MONO BSP_BIT32(2)
66 #define I2S_DAIO_STOP BSP_BIT32(3)
67 #define I2S_DAIO_RESET BSP_BIT32(4)
68 #define I2S_DAIO_WS_SEL BSP_BIT32(5)
69 #define I2S_DAIO_WS_HALFPERIOD(val) BSP_FLD32(val, 6, 14)
70 #define I2S_DAIO_MUTE BSP_BIT32(15)
71 
80 #define I2S_STATE_IRQ BSP_BIT32(0)
81 #define I2S_STATE_DMAREQ_0 BSP_BIT32(1)
82 #define I2S_STATE_DMAREQ_1 BSP_BIT32(2)
83 #define I2S_STATE_RX_LEVEL_GET(reg) BSP_FLD32GET(reg, 8, 11)
84 #define I2S_STATE_TX_LEVEL_GET(reg) BSP_FLD32GET(reg, 16, 19)
85 
94 #define I2S_DMA_RX_ENABLE BSP_BIT32(0)
95 #define I2S_DMA_TX_ENABLE BSP_BIT32(1)
96 #define I2S_DMA_RX_DEPTH(val) BSP_FLD32(val, 8, 11)
97 #define I2S_DMA_TX_DEPTH(val) BSP_FLD32(val, 16, 19)
98 
107 #define I2S_IRQ_RX BSP_BIT32(0)
108 #define I2S_IRQ_TX BSP_BIT32(1)
109 #define I2S_IRQ_RX_DEPTH(val) BSP_FLD32(val, 8, 11)
110 #define I2S_IRQ_TX_DEPTH(val) BSP_FLD32(val, 16, 19)
111 
120 #define LPC24XX_I2S_RATE(val) BSP_FLD32(val, 0, 9)
121 #define LPC32XX_I2S_RATE_X_DIVIDER(val) BSP_FLD32(val, 0, 7)
122 #define LPC32XX_I2S_RATE_Y_DIVIDER(val) BSP_FLD32(val, 8, 15)
123 
128 #ifdef __cplusplus
129 }
130 #endif /* __cplusplus */
131 
132 #endif /* LIBBSP_ARM_SHARED_LPC_I2S_H */
I2S control block.
Definition: lpc-i2s.h:46
Utility macros.