2020-09-27 08:00:58 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is created based on Intel Alder Lake Processor PCH Datasheet
|
|
|
|
* Document number: 621483
|
|
|
|
* Chapter number: 9
|
|
|
|
*/
|
|
|
|
|
2020-12-21 03:46:58 +01:00
|
|
|
#include <commonlib/helpers.h>
|
2020-09-27 08:00:58 +02:00
|
|
|
#include <soc/pci_devs.h>
|
|
|
|
|
2020-12-21 03:46:58 +01:00
|
|
|
const unsigned int uart_devices[] = {
|
|
|
|
PCH_DEVFN_UART0,
|
|
|
|
PCH_DEVFN_UART1,
|
|
|
|
PCH_DEVFN_UART2,
|
2020-09-27 08:00:58 +02:00
|
|
|
};
|
|
|
|
|
2020-12-21 03:46:58 +01:00
|
|
|
const int uart_devices_size = ARRAY_SIZE(uart_devices);
|