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_CEZANNE_UART_H
4 #define AMD_CEZANNE_UART_H
5 
6 #include <types.h>
7 
8 void set_uart_config(unsigned int idx); /* configure hardware of FCH UART selected by idx */
9 void clear_uart_legacy_config(void); /* disable legacy I/O decode for FCH UART */
10 
11 #endif /* AMD_CEZANNE_UART_H */
void set_uart_config(unsigned int idx)
Definition: uart.c:43
void clear_uart_legacy_config(void)
Definition: uart.c:38