Lines Matching refs:membase

42 	u32 ier = ioread32(port->membase + TIMBUART_IER) & ~RXFLAGS;
43 iowrite32(ier, port->membase + TIMBUART_IER);
49 u32 ier = ioread32(port->membase + TIMBUART_IER) & ~TXBAE;
50 iowrite32(ier, port->membase + TIMBUART_IER);
64 u32 isr = ioread32(port->membase + TIMBUART_ISR);
72 u8 ctl = ioread8(port->membase + TIMBUART_CTRL) |
75 iowrite8(ctl, port->membase + TIMBUART_CTRL);
76 iowrite32(TXBF, port->membase + TIMBUART_ISR);
84 while (ioread32(port->membase + TIMBUART_ISR) & RXDP) {
85 u8 ch = ioread8(port->membase + TIMBUART_RXFIFO);
102 while (!(ioread32(port->membase + TIMBUART_ISR) & TXBF) &&
105 port->membase + TIMBUART_TXFIFO);
114 ioread8(port->membase + TIMBUART_CTRL),
116 ioread8(port->membase + TIMBUART_BAUDRATE));
134 iowrite32(TXFLAGS, port->membase + TIMBUART_ISR);
158 u8 ctl = ioread8(port->membase + TIMBUART_CTRL) |
160 iowrite8(ctl, port->membase + TIMBUART_CTRL);
166 iowrite32(RXFLAGS, port->membase + TIMBUART_ISR);
182 isr = ioread32(uart->port.membase + TIMBUART_ISR);
193 iowrite32(ier, uart->port.membase + TIMBUART_IER);
201 u8 cts = ioread8(port->membase + TIMBUART_CTRL);
215 iowrite8(TIMBUART_CTRL_RTS, port->membase + TIMBUART_CTRL);
217 iowrite8(0, port->membase + TIMBUART_CTRL);
226 iowrite32(CTS_DELTA, port->membase + TIMBUART_ISR);
247 iowrite8(TIMBUART_CTRL_FLSHRX, port->membase + TIMBUART_CTRL);
248 iowrite32(0x1ff, port->membase + TIMBUART_ISR);
251 port->membase + TIMBUART_IER);
263 iowrite32(0, port->membase + TIMBUART_IER);
302 iowrite8((u8)bindex, port->membase + TIMBUART_BAUDRATE);
322 iounmap(port->membase);
323 port->membase = NULL;
339 port->membase = ioremap(port->mapbase, size);
340 if (port->membase == NULL) {
353 if (ioread8(uart->port.membase + TIMBUART_IPR)) {
354 uart->last_ier = ioread32(uart->port.membase + TIMBUART_IER);
357 iowrite32(0, uart->port.membase + TIMBUART_IER);
445 uart->port.membase = NULL;