OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:com_port
(Results
1 - 3
of
3
) sorted by null
/external/u-boot/arch/arm/mach-socfpga/
reset_manager_arria10.c
32
unsigned int
com_port
;
local
34
com_port
= uart_com_port(gd->fdt_blob);
36
if (
com_port
== SOCFPGA_UART1_ADDRESS)
38
else if (
com_port
== SOCFPGA_UART0_ADDRESS)
/external/u-boot/drivers/serial/
ns16550.c
129
ns16550_writeb(
com_port
, \
130
(unsigned char *)addr - (unsigned char *)
com_port
, value)
132
ns16550_readb(
com_port
, \
133
(unsigned char *)addr - (unsigned char *)
com_port
)
148
static void NS16550_setbrg(NS16550_t
com_port
, int baud_divisor)
150
serial_out(UART_LCR_BKSE | UART_LCRVAL, &
com_port
->lcr);
151
serial_out(baud_divisor & 0xff, &
com_port
->dll);
152
serial_out((baud_divisor >> 8) & 0xff, &
com_port
->dlm);
153
serial_out(UART_LCRVAL, &
com_port
->lcr);
156
void NS16550_init(NS16550_t
com_port
, int baud_divisor
246
struct NS16550 *
com_port
= (struct NS16550 *)CONFIG_DEBUG_UART_BASE;
local
269
struct NS16550 *
com_port
= (struct NS16550 *)CONFIG_DEBUG_UART_BASE;
local
286
struct NS16550 *
com_port
= (struct NS16550 *)CONFIG_DEBUG_UART_BASE;
local
305
struct NS16550 *
com_port
= (struct NS16550 *)CONFIG_DEBUG_UART_BASE;
local
319
struct NS16550 *const
com_port
= dev_get_priv(dev);
local
339
struct NS16550 *const
com_port
= dev_get_priv(dev);
local
349
struct NS16550 *const
com_port
= dev_get_priv(dev);
local
359
struct NS16550 *const
com_port
= dev_get_priv(dev);
local
372
struct NS16550 *const
com_port
= dev_get_priv(dev);
local
[
all
...]
/external/u-boot/lib/efi/
efi_stub.c
69
NS16550_t
com_port
= (NS16550_t)0x3f8;
local
71
while ((inb((ulong)&
com_port
->lsr) & UART_LSR_THRE) == 0)
73
outb(ch, (ulong)&
com_port
->thr);
Completed in 503 milliseconds