Home | History | Annotate | Download | only in ingenic

Lines Matching refs:com0addr

51 volatile int32_t *com0addr = (int32_t *)MIPS_PHYS_TO_KSEG1(JZ_UART0);
100 com0addr = (uint32_t *)MIPS_PHYS_TO_KSEG1(JZ_UART0);
107 com0addr[com_ier] = 0;
108 com0addr[com_lctl] = htole32(LCR_DLAB);
110 com0addr[com_dlbl] = htole32(rate & 0xff);
111 com0addr[com_dlbh] = htole32(rate >> 8);
113 com0addr[com_lctl] = htole32(LCR_8BITS); /* XXX */
114 com0addr[com_mcr] = htole32(MCR_DTR|MCR_RTS);
115 com0addr[com_fifo] = htole32(
129 while ((le32toh(com0addr[com_lsr]) & LSR_TXRDY) == 0)
133 com0addr[com_data] = htole32((uint32_t)c);
135 while ((le32toh(com0addr[com_lsr]) & LSR_TSRE) == 0)