blob: 2344a6a717d9cda099936acb36d2975f7eaaefac [file] [log] [blame]
Subrata Banik2871e0e2020-09-27 11:30:58 +05301/* 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
Michael Niewöhner405f2292020-12-21 03:46:58 +01009#include <commonlib/helpers.h>
Subrata Banik2871e0e2020-09-27 11:30:58 +053010#include <soc/pci_devs.h>
Subrata Banik2871e0e2020-09-27 11:30:58 +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 Banik2871e0e2020-09-27 11:30:58 +053016};
17
Michael Niewöhner405f2292020-12-21 03:46:58 +010018const int uart_devices_size = ARRAY_SIZE(uart_devices);