blob: fa4760c11852f9de2f08a868d30c7e24d0d81ab1 [file] [log] [blame]
Angel Pons16f6aa82020-04-05 15:47:21 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Subrata Banik91e89c52019-11-01 18:30:01 +05302
3/*
4 * This file is created based on Intel Tiger Lake Processor PCH Datasheet
5 * Document number: 575857
6 * Chapter number: 9
7 */
8
Michael Niewöhner405f2292020-12-21 03:46:58 +01009#include <commonlib/helpers.h>
Subrata Banik91e89c52019-11-01 18:30:01 +053010#include <soc/pci_devs.h>
Subrata Banik91e89c52019-11-01 18:30:01 +053011
Michael Niewöhner405f2292020-12-21 03:46:58 +010012const unsigned int uart_devices[] = {
13 PCH_DEVFN_UART0,
14 PCH_DEVFN_UART1,
15 PCH_DEVFN_UART2,
Subrata Banik91e89c52019-11-01 18:30:01 +053016};
17
Michael Niewöhner405f2292020-12-21 03:46:58 +010018const int uart_devices_size = ARRAY_SIZE(uart_devices);