MCPcopy Create free account
hub / github.com/coreboot/coreboot / uart_tx_byte

Function uart_tx_byte

src/drivers/uart/pl011.c:44–50  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

42}
43
44void uart_tx_byte(unsigned int idx, unsigned char data)
45{
46 struct pl011_uart *regs = uart_platform_baseptr(idx);
47
48 write8(&regs->dr, data);
49 uart_tx_flush(idx);
50}
51
52void uart_tx_flush(unsigned int idx)
53{

Callers 4

sbi_console_putcharFunction · 0.50
__uart_tx_byteFunction · 0.50
__gdb_tx_byteFunction · 0.50

Calls 3

uart_platform_baseptrFunction · 0.85
uart_tx_flushFunction · 0.70
write8Function · 0.50

Tested by

no test coverage detected