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