Lines Matching defs:com0addr
142 volatile int32_t *com0addr = (int32_t *)
154 com0addr = (uint32_t *)
162 com0addr[com_ier] = 0;
163 com0addr[com_lctl] = htobe32(LCR_DLAB);
164 com0addr[com_dlbl] = htobe32(rate & 0xff);
165 com0addr[com_dlbh] = htobe32(rate >> 8);
166 com0addr[com_lctl] = htobe32(LCR_8BITS); /* XXX */
167 com0addr[com_mcr] = htobe32(MCR_DTR|MCR_RTS);
168 com0addr[com_fifo] = htobe32(
179 while ((be32toh(com0addr[com_lsr]) & LSR_TXRDY) == 0)
183 com0addr[com_data] = htobe32((uint32_t)c);
185 while ((be32toh(com0addr[com_lsr]) & LSR_TSRE) == 0)