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 /*
4  * This file is created based on Intel Alder Lake Processor PCH Datasheet
5  * Document number: 621483
6  * Chapter number: 9
7  */
8 
9 #include <commonlib/helpers.h>
10 #include <soc/pci_devs.h>
11 
12 const unsigned int uart_devices[] = {
16 };
17 
#define ARRAY_SIZE(a)
Definition: helpers.h:12
#define PCH_DEVFN_UART0
Definition: pci_devs.h:204
#define PCH_DEVFN_UART1
Definition: pci_devs.h:205
#define PCH_DEVFN_UART2
Definition: pci_devs.h:164
const int uart_devices_size
Definition: uart.c:18
const unsigned int uart_devices[]
Definition: uart.c:12