Searched refs:early_serial_base (Results 1 - 7 of 7) sorted by relevance

/linux-master/arch/x86/boot/compressed/
H A Dearly_serial_console.c4 int early_serial_base __section(".data");
H A Dmisc.h130 extern int early_serial_base;
133 static const int early_serial_base; variable
H A Dmisc.c113 while ((inb(early_serial_base + LSR) & XMTRDY) == 0 && --timeout)
116 outb(ch, early_serial_base + TXR);
124 if (early_serial_base) {
/linux-master/arch/x86/boot/
H A Dtty.c16 int early_serial_base; variable
32 while ((inb(early_serial_base + LSR) & XMTRDY) == 0 && --timeout)
35 outb(ch, early_serial_base + TXR);
57 if (early_serial_base != 0)
H A Dearly_serial_console.c43 early_serial_base = port;
152 if (!early_serial_base)
H A Dboot.h277 extern int early_serial_base;
/linux-master/arch/x86/kernel/
H A Dearly_printk.c79 static unsigned long early_serial_base = 0x3f8; /* ttyS0 */ variable
114 while ((serial_in(early_serial_base, LSR) & XMTRDY) == 0 && --timeout)
116 serial_out(early_serial_base, TXR, ch);
134 serial_out(early_serial_base, LCR, 0x3); /* 8n1 */
135 serial_out(early_serial_base, IER, 0); /* no interrupt */
136 serial_out(early_serial_base, FCR, 0); /* no fifo */
137 serial_out(early_serial_base, MCR, 0x3); /* DTR + RTS */
139 c = serial_in(early_serial_base, LCR);
140 serial_out(early_serial_base, LCR, c | DLAB);
141 serial_out(early_serial_base, DL
[all...]

Completed in 178 milliseconds