Home | History | Annotate | Download | only in gdbstub

Lines Matching full:uart_readb

83 #define uart_readb(addr) inb(addr)
94 status = uart_readb(UART_BASE + UART_LSR);
112 status = uart_readb(UART_BASE + UART_LSR);
114 ch = uart_readb(UART_BASE + UART_RBR); /* fetch (first) character */
135 lcs = uart_readb(UART_BASE + UART_LCR) & 0x7f;
138 (uart_readb(UART_BASE + UART_DLM) << 8) | uart_readb(UART_BASE +
148 if (uart_readb(UART_BASE + UART_DLL) != 0xaa) {
152 if (uart_readb(UART_BASE + UART_DLL) != 0x55) {
156 if (uart_readb(UART_BASE + UART_DLL) != (divisor & 0xff)) {
160 if (uart_readb(UART_BASE + UART_DLM) != 0xaa) {
164 if (uart_readb(UART_BASE + UART_DLM) != 0x55) {
168 if (uart_readb(UART_BASE + UART_DLM) != ((divisor >> 8) & 0xff)) {
187 (void)uart_readb(UART_BASE + UART_RBR);
189 status = uart_readb(UART_BASE + UART_LSR);