Lines Matching refs:membase

54 	u32 ier = ioread32(port->membase + TIMBUART_IER) & ~RXFLAGS;
55 iowrite32(ier, port->membase + TIMBUART_IER);
61 u32 ier = ioread32(port->membase + TIMBUART_IER) & ~TXBAE;
62 iowrite32(ier, port->membase + TIMBUART_IER);
76 u32 isr = ioread32(port->membase + TIMBUART_ISR);
84 u8 ctl = ioread8(port->membase + TIMBUART_CTRL) |
87 iowrite8(ctl, port->membase + TIMBUART_CTRL);
88 iowrite32(TXBF, port->membase + TIMBUART_ISR);
96 while (ioread32(port->membase + TIMBUART_ISR) & RXDP) {
97 u8 ch = ioread8(port->membase + TIMBUART_RXFIFO);
114 while (!(ioread32(port->membase + TIMBUART_ISR) & TXBF) &&
117 port->membase + TIMBUART_TXFIFO);
126 ioread8(port->membase + TIMBUART_CTRL),
128 ioread8(port->membase + TIMBUART_BAUDRATE));
146 iowrite32(TXFLAGS, port->membase + TIMBUART_ISR);
170 u8 ctl = ioread8(port->membase + TIMBUART_CTRL) |
172 iowrite8(ctl, port->membase + TIMBUART_CTRL);
178 iowrite32(RXFLAGS, port->membase + TIMBUART_ISR);
194 isr = ioread32(uart->port.membase + TIMBUART_ISR);
205 iowrite32(ier, uart->port.membase + TIMBUART_IER);
213 u8 cts = ioread8(port->membase + TIMBUART_CTRL);
227 iowrite8(TIMBUART_CTRL_RTS, port->membase + TIMBUART_CTRL);
229 iowrite8(0, port->membase + TIMBUART_CTRL);
238 iowrite32(CTS_DELTA, port->membase + TIMBUART_ISR);
259 iowrite8(TIMBUART_CTRL_FLSHRX, port->membase + TIMBUART_CTRL);
260 iowrite32(0x1ff, port->membase + TIMBUART_ISR);
263 port->membase + TIMBUART_IER);
275 iowrite32(0, port->membase + TIMBUART_IER);
312 iowrite8((u8)bindex, port->membase + TIMBUART_BAUDRATE);
332 iounmap(port->membase);
333 port->membase = NULL;
349 port->membase = ioremap(port->mapbase, size);
350 if (port->membase == NULL) {
363 if (ioread8(uart->port.membase + TIMBUART_IPR)) {
364 uart->last_ier = ioread32(uart->port.membase + TIMBUART_IER);
367 iowrite32(0, uart->port.membase + TIMBUART_IER);
455 uart->port.membase = NULL;