coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
uart.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef AMD_BLOCK_UART_H
4 #define AMD_BLOCK_UART_H
5 
6 #include <device/device.h>
7 #include <types.h>
8 
9 uintptr_t get_uart_base(unsigned int idx); /* get MMIO base address of FCH UART */
10 void uart_inject_ssdt(const struct device *dev);
11 
12 #endif /* AMD_BLOCK_UART_H */
void uart_inject_ssdt(const struct device *dev)
Definition: uart_acpi.c:8
uintptr_t get_uart_base(unsigned int idx)
Definition: uart.c:9
unsigned long uintptr_t
Definition: stdint.h:21
Definition: device.h:107