2020-04-05 15:47:21 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2019-11-01 14:00:01 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is created based on Intel Tiger Lake Processor PCH Datasheet
|
|
|
|
* Document number: 575857
|
|
|
|
* Chapter number: 9
|
|
|
|
*/
|
|
|
|
|
2020-12-21 03:46:58 +01:00
|
|
|
#include <commonlib/helpers.h>
|
2019-11-01 14:00:01 +01: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,
|
2019-11-01 14:00:01 +01:00
|
|
|
};
|
|
|
|
|
2020-12-21 03:46:58 +01:00
|
|
|
const int uart_devices_size = ARRAY_SIZE(uart_devices);
|