Lines Matching defs:lpuart_port
240 struct lpuart_port { struct
241 struct uart_port port;
242 enum lpuart_type devtype;
243 struct clk *ipg_clk;
244 struct clk *baud_clk;
245 unsigned int txfifo_size;
246 unsigned int rxfifo_size;
248 bool lpuart_dma_tx_use;
249 bool lpuart_dma_rx_use;
250 struct dma_chan *dma_tx_chan;
251 struct dma_chan *dma_rx_chan;
252 struct dma_async_tx_descriptor *dma_tx_desc;
253 struct dma_async_tx_descriptor *dma_rx_desc;
254 dma_cookie_t dma_tx_cookie;
255 dma_cookie_t dma_rx_cookie;
256 unsigned int dma_tx_bytes;
257 unsigned int dma_rx_bytes;
258 bool dma_tx_in_progress;
259 unsigned int dma_rx_timeout;
260 struct timer_list lpuart_timer;
261 struct scatterlist rx_sgl, tx_sgl[2];
262 struct circ_buf rx_ring;
263 int rx_dma_rng_buf_len;
264 unsigned int dma_tx_nents;
265 wait_queue_head_t dma_wait;