coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
uart.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <bl_uapp/bl_syscall_public.h>
4 #include <amdblocks/uart.h>
5 #include <types.h>
6 
7 uintptr_t get_uart_base(unsigned int idx)
8 {
9  /* Mapping the UART is not supported. */
10  return 0;
11 }
uintptr_t get_uart_base(unsigned int idx)
Definition: uart.c:9
unsigned long uintptr_t
Definition: stdint.h:21