Searched refs:UART_LSR_THRE (Results 1 – 25 of 37) sorted by relevance
12
/arch/arm/mach-ebsa110/include/mach/ |
D | uncompress.h | 25 } while (!(v & UART_LSR_THRE)); in putc() 37 } while ((v & (UART_LSR_TEMT|UART_LSR_THRE)) != in flush() 38 (UART_LSR_TEMT|UART_LSR_THRE)); in flush()
|
/arch/mips/ath79/ |
D | early_printk.c | 38 prom_putchar_wait(base + UART_LSR * 4, UART_LSR_THRE, UART_LSR_THRE); in prom_putchar_ar71xx() 40 prom_putchar_wait(base + UART_LSR * 4, UART_LSR_THRE, UART_LSR_THRE); in prom_putchar_ar71xx()
|
/arch/arm/mach-mv78xx0/include/mach/ |
D | uncompress.h | 20 if (base[UART_LSR << 2] & UART_LSR_THRE) in putc() 34 mask = UART_LSR_TEMT | UART_LSR_THRE; in flush()
|
/arch/arm/mach-kirkwood/include/mach/ |
D | uncompress.h | 20 if (base[UART_LSR << 2] & UART_LSR_THRE) in putc() 34 mask = UART_LSR_TEMT | UART_LSR_THRE; in flush()
|
/arch/arm/mach-orion5x/include/mach/ |
D | uncompress.h | 22 if (base[UART_LSR << 2] & UART_LSR_THRE) in putc() 36 mask = UART_LSR_TEMT | UART_LSR_THRE; in flush()
|
/arch/arm/include/asm/hardware/ |
D | debug-8250.S | 18 and \rd, \rd, #UART_LSR_TEMT | UART_LSR_THRE 19 teq \rd, #UART_LSR_TEMT | UART_LSR_THRE
|
/arch/arm/mach-picoxcell/include/mach/ |
D | debug-macro.S | 28 and \rd, \rd, #UART_LSR_TEMT | UART_LSR_THRE 29 teq \rd, #UART_LSR_TEMT | UART_LSR_THRE
|
/arch/arm/mach-omap1/include/mach/ |
D | debug-macro.S | 90 and \rd, \rd, #(UART_LSR_TEMT | UART_LSR_THRE) 91 teq \rd, #(UART_LSR_TEMT | UART_LSR_THRE) 94 and \rd, \rd, #(UART_LSR_TEMT | UART_LSR_THRE) 95 teq \rd, #(UART_LSR_TEMT | UART_LSR_THRE)
|
/arch/powerpc/boot/ |
D | ns16550.c | 24 #define UART_LSR_THRE 0x20 /* Transmit-hold-register empty */ macro 40 while ((in_8(reg_base + (UART_LSR << reg_shift)) & UART_LSR_THRE) == 0); in ns16550_putc()
|
/arch/arm/mach-davinci/include/mach/ |
D | uncompress.h | 35 while (!(uart[UART_LSR] & UART_LSR_THRE)) in putc() 42 while (!(uart[UART_LSR] & UART_LSR_THRE)) in flush()
|
D | debug-macro.S | 73 and \rd, \rd, #UART_LSR_TEMT | UART_LSR_THRE 74 teq \rd, #UART_LSR_TEMT | UART_LSR_THRE
|
/arch/mips/cobalt/ |
D | console.c | 16 while (!(readb(UART_BASE + UART_LSR) & UART_LSR_THRE)) in prom_putchar()
|
/arch/arm/mach-gemini/include/mach/ |
D | uncompress.h | 28 while (!(UART[UART_LSR] & UART_LSR_THRE)) in putc()
|
/arch/arm/mach-iop13xx/include/mach/ |
D | uncompress.h | 6 #define TX_DONE (UART_LSR_TEMT | UART_LSR_THRE)
|
/arch/mips/mipssim/ |
D | sim_console.c | 36 while ((serial_in(UART_LSR) & UART_LSR_THRE) == 0) in prom_putchar()
|
/arch/arm/mach-w90x900/include/mach/ |
D | uncompress.h | 29 #define TX_DONE (UART_LSR_TEMT | UART_LSR_THRE)
|
/arch/arm/mach-ixp23xx/include/mach/ |
D | uncompress.h | 24 if (UART_BASE[UART_LSR] & UART_LSR_THRE) in putc()
|
/arch/mips/mti-malta/ |
D | malta-console.c | 41 while ((serial_in(UART_LSR) & UART_LSR_THRE) == 0) in prom_putchar()
|
/arch/arm/mach-mmp/include/mach/ |
D | uncompress.h | 25 while (!(UART[UART_LSR] & UART_LSR_THRE)) in putc()
|
/arch/microblaze/kernel/ |
D | early_printk.c | 80 #define UART_LSR_THRE 0x20 /* Transmit-hold-register empty */ in early_printk_uart16550_putc() macro 81 #define BOTH_EMPTY (UART_LSR_TEMT | UART_LSR_THRE) in early_printk_uart16550_putc()
|
/arch/arm/mach-iop33x/include/mach/ |
D | uncompress.h | 12 #define TX_DONE (UART_LSR_TEMT | UART_LSR_THRE)
|
/arch/arm/mach-ixp2000/include/mach/ |
D | uncompress.h | 36 while (--j && !(*UARTSR & UART_LSR_THRE)) in putc()
|
/arch/arm/mach-iop32x/include/mach/ |
D | uncompress.h | 12 #define TX_DONE (UART_LSR_TEMT | UART_LSR_THRE)
|
/arch/arm/mach-ixp4xx/include/mach/ |
D | uncompress.h | 20 #define TX_DONE (UART_LSR_TEMT|UART_LSR_THRE)
|
/arch/mips/loongson/common/ |
D | early_printk.c | 36 while (((serial_in(uart_base, UART_LSR) & UART_LSR_THRE) == 0) && in prom_putchar()
|
12