Home
last modified time | relevance | path

Searched refs:UartMmioBase (Results 1 – 2 of 2) sorted by relevance

/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/MemoryInit/Pei/
Dlprint.c21 uint32_t UartMmioBase = 0; variable
96 while ((*(volatile uint8_t*) (UartMmioBase + R_UART_LSR) & B_UART_LSR_RXRDY) == 0); in mgetc()
97 c = *(volatile uint8_t*) (UartMmioBase + R_UART_BAUD_THR); in mgetc()
111 if((*(volatile uint8_t*) (UartMmioBase + R_UART_LSR) & B_UART_LSR_RXRDY) != 0) in mgetch()
113 c = *(volatile uint8_t*) (UartMmioBase + R_UART_BAUD_THR); in mgetch()
137 == (B_UART_LSR_TEMT & *((volatile uint8_t*) (UartMmioBase + R_UART_LSR)))) in printc()
139 *((volatile uint8_t*) (UartMmioBase + R_UART_BAUD_THR)) = c; in printc()
332 if (0 == UartMmioBase) in dpf()
Dmrc.c23 extern uint32_t UartMmioBase;
31 UartMmioBase = mrc_params->uart_mmio_base; in Mrc()