1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 3 /* 4 * This file is created based on Intel Tiger Lake Processor PCH Datasheet 5 * Document number: 575857 6 * Chapter number: 9 7 */ 8 9 #include <commonlib/helpers.h> 10 #include <soc/pci_devs.h> 11 12 const unsigned int uart_devices[] = { 13 PCH_DEVFN_UART0, 14 PCH_DEVFN_UART1, 15 PCH_DEVFN_UART2, 16 }; 17 18 const int uart_devices_size = ARRAY_SIZE(uart_devices); 19