Lines Matching defs:lpuart_port
252 struct lpuart_port { struct
253 struct uart_port port;
254 enum lpuart_type devtype;
255 struct clk *ipg_clk;
256 struct clk *baud_clk;
257 unsigned int txfifo_size;
258 unsigned int rxfifo_size;
260 bool lpuart_dma_tx_use;
261 bool lpuart_dma_rx_use;
262 struct dma_chan *dma_tx_chan;
263 struct dma_chan *dma_rx_chan;
264 struct dma_async_tx_descriptor *dma_tx_desc;
265 struct dma_async_tx_descriptor *dma_rx_desc;
266 dma_cookie_t dma_tx_cookie;
267 dma_cookie_t dma_rx_cookie;
268 unsigned int dma_tx_bytes;
269 unsigned int dma_rx_bytes;
270 bool dma_tx_in_progress;
271 unsigned int dma_rx_timeout;
272 struct timer_list lpuart_timer;
273 struct scatterlist rx_sgl, tx_sgl[2];
274 struct circ_buf rx_ring;
275 int rx_dma_rng_buf_len;
276 unsigned int dma_tx_nents;
277 wait_queue_head_t dma_wait;
278 bool id_allocated;