no-OS
no_os_tdm.h
Go to the documentation of this file.
1 /***************************************************************************/
33 #ifndef _NO_OS_TDM_H_
34 #define _NO_OS_TDM_H_
35 
36 #include <stdint.h>
37 #include <stdbool.h>
38 
45 
51 };
52 
61  uint8_t data_size;
63  uint8_t data_offset;
67  uint8_t slots_per_frame;
73  bool fs_lastbit;
76  /* IRQ ID */
77  uint32_t irq_id;
79  void (*rx_complete_callback)(void *rx_arg);
81  void (*rx_half_complete_callback)(void *rx_arg);
85  void *extra;
86 };
87 
93  /* IRQ ID */
94  uint32_t irq_id;
98  struct lf256fifo *rx_fifo;
100  void *extra;
101 };
102 
110  int32_t (*tdm_ops_init)(struct no_os_tdm_desc **,
111  const struct no_os_tdm_init_param *);
113  int32_t (*tdm_ops_read)(struct no_os_tdm_desc *, void *, uint16_t);
115  int32_t (*tdm_ops_write)(struct no_os_tdm_desc *, void *, uint16_t);
117  int32_t (*tdm_ops_pause)(struct no_os_tdm_desc *);
119  int32_t (*tdm_ops_resume)(struct no_os_tdm_desc *);
121  int32_t (*tdm_ops_stop)(struct no_os_tdm_desc *);
123  int32_t (*tdm_ops_remove)(struct no_os_tdm_desc *);
124 };
125 
126 /* Initialize the TDM communication peripheral. */
127 int32_t no_os_tdm_init(struct no_os_tdm_desc **desc,
128  const struct no_os_tdm_init_param *param);
129 
130 /* Free the resources allocated by no_os_tdm_init(). */
131 int32_t no_os_tdm_remove(struct no_os_tdm_desc *desc);
132 
133 /* Read data. */
134 int32_t no_os_tdm_read(struct no_os_tdm_desc *desc,
135  void *data,
136  uint16_t bytes_number);
137 
138 /* Write data. */
139 int32_t no_os_tdm_write(struct no_os_tdm_desc *desc,
140  void *data,
141  uint16_t bytes_number);
142 
143 /* Pause TDM DMA Transfer */
144 int32_t no_os_tdm_pause(struct no_os_tdm_desc *desc);
145 
146 /* Resume TDM DMA Transfer */
147 int32_t no_os_tdm_resume(struct no_os_tdm_desc *desc);
148 
149 /* Stop TDM DMA Transfer */
150 int32_t no_os_tdm_stop(struct no_os_tdm_desc *desc);
151 
152 #endif // _NO_OS_TDM_H_
no_os_tdm_write
int32_t no_os_tdm_write(struct no_os_tdm_desc *desc, void *data, uint16_t bytes_number)
Write data using the TDM interface.
Definition: no_os_tdm.c:120
NO_OS_TDM_MASTER_RX
@ NO_OS_TDM_MASTER_RX
Definition: no_os_tdm.h:48
no_os_tdm_desc::extra
void * extra
Definition: no_os_tdm.h:100
no_os_tdm_platform_ops::tdm_ops_write
int32_t(* tdm_ops_write)(struct no_os_tdm_desc *, void *, uint16_t)
Definition: no_os_tdm.h:115
no_os_tdm_platform_ops::tdm_ops_pause
int32_t(* tdm_ops_pause)(struct no_os_tdm_desc *)
Definition: no_os_tdm.h:117
no_os_tdm_init_param::fs_active_length
uint8_t fs_active_length
Definition: no_os_tdm.h:71
no_os_tdm_init_param::data_offset
uint8_t data_offset
Definition: no_os_tdm.h:63
no_os_tdm_init_param::platform_ops
const struct no_os_tdm_platform_ops * platform_ops
Definition: no_os_tdm.h:83
no_os_tdm_init_param::fs_lastbit
bool fs_lastbit
Definition: no_os_tdm.h:73
no_os_tdm_init_param::rx_half_complete_callback
void(* rx_half_complete_callback)(void *rx_arg)
Definition: no_os_tdm.h:81
no_os_tdm_platform_ops::tdm_ops_read
int32_t(* tdm_ops_read)(struct no_os_tdm_desc *, void *, uint16_t)
Definition: no_os_tdm.h:113
no_os_tdm_platform_ops::tdm_ops_stop
int32_t(* tdm_ops_stop)(struct no_os_tdm_desc *)
Definition: no_os_tdm.h:121
NO_OS_TDM_SLAVE_RX
@ NO_OS_TDM_SLAVE_RX
Definition: no_os_tdm.h:50
no_os_tdm_desc::irq_id
uint32_t irq_id
Definition: no_os_tdm.h:94
no_os_tdm_platform_ops::tdm_ops_remove
int32_t(* tdm_ops_remove)(struct no_os_tdm_desc *)
Definition: no_os_tdm.h:123
no_os_tdm_init_param::mode
enum no_os_tdm_mode mode
Definition: no_os_tdm.h:59
no_os_tdm_init
int32_t no_os_tdm_init(struct no_os_tdm_desc **desc, const struct no_os_tdm_init_param *param)
Initialize the TDM communication peripheral.
Definition: no_os_tdm.c:45
no_os_tdm_desc
Structure holding TDM descriptor.
Definition: no_os_tdm.h:92
no_os_tdm_init_param::irq_id
uint32_t irq_id
Definition: no_os_tdm.h:77
no_os_tdm_init_param::fs_active_low
bool fs_active_low
Definition: no_os_tdm.h:69
no_os_tdm_platform_ops
Structure holding TDM function pointers that point to the platform specific function.
Definition: no_os_tdm.h:108
no_os_tdm_init_param::data_lsb_first
bool data_lsb_first
Definition: no_os_tdm.h:65
NO_OS_TDM_SLAVE_TX
@ NO_OS_TDM_SLAVE_TX
Definition: no_os_tdm.h:49
no_os_tdm_init_param::rx_complete_callback
void(* rx_complete_callback)(void *rx_arg)
Definition: no_os_tdm.h:79
no_os_tdm_init_param::extra
void * extra
Definition: no_os_tdm.h:85
no_os_tdm_mode
no_os_tdm_mode
Definition: no_os_tdm.h:46
no_os_tdm_read
int32_t no_os_tdm_read(struct no_os_tdm_desc *desc, void *data, uint16_t bytes_number)
Read data using the TDM interface.
Definition: no_os_tdm.c:76
no_os_tdm_pause
int32_t no_os_tdm_pause(struct no_os_tdm_desc *desc)
Pause TDM DMA transfer.
Definition: no_os_tdm.c:88
no_os_tdm_platform_ops::tdm_ops_resume
int32_t(* tdm_ops_resume)(struct no_os_tdm_desc *)
Definition: no_os_tdm.h:119
NO_OS_TDM_MASTER_TX
@ NO_OS_TDM_MASTER_TX
Definition: no_os_tdm.h:47
no_os_tdm_platform_ops::tdm_ops_init
int32_t(* tdm_ops_init)(struct no_os_tdm_desc **, const struct no_os_tdm_init_param *)
Definition: no_os_tdm.h:110
no_os_tdm_remove
int32_t no_os_tdm_remove(struct no_os_tdm_desc *desc)
Free the resources allocated by no_os_tdm_init().
Definition: no_os_tdm.c:64
no_os_tdm_resume
int32_t no_os_tdm_resume(struct no_os_tdm_desc *desc)
Resume TDM DMA transfer.
Definition: no_os_tdm.c:98
no_os_tdm_stop
int32_t no_os_tdm_stop(struct no_os_tdm_desc *desc)
Stop TDM DMA transfer.
Definition: no_os_tdm.c:108
no_os_tdm_init_param::data_size
uint8_t data_size
Definition: no_os_tdm.h:61
no_os_tdm_init_param
Structure holding the parameters for TDM initialization.
Definition: no_os_tdm.h:57
no_os_tdm_init_param::slots_per_frame
uint8_t slots_per_frame
Definition: no_os_tdm.h:67
no_os_tdm_desc::platform_ops
const struct no_os_tdm_platform_ops * platform_ops
Definition: no_os_tdm.h:96
no_os_tdm_init_param::rising_edge_sampling
bool rising_edge_sampling
Definition: no_os_tdm.h:75
no_os_tdm_desc::rx_fifo
struct lf256fifo * rx_fifo
Definition: no_os_tdm.h:98