7cb4cb64ba
Change-Id: I630b7b0b1d564bcd99358caaaef4afd78c22866c Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/50528 Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
46 lines
1.1 KiB
C
46 lines
1.1 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
/*
|
|
* This file is created based on Intel Tiger Lake Processor PCH Datasheet
|
|
* Document number: 575857
|
|
* Chapter number: 9
|
|
*/
|
|
|
|
#include <device/pci_def.h>
|
|
#include <intelblocks/gpio.h>
|
|
#include <intelblocks/lpss.h>
|
|
#include <intelblocks/pcr.h>
|
|
#include <intelblocks/uart.h>
|
|
#include <soc/iomap.h>
|
|
#include <soc/pch.h>
|
|
#include <soc/pci_devs.h>
|
|
#include <soc/pcr_ids.h>
|
|
|
|
const struct uart_controller_config uart_ctrlr_config[] = {
|
|
{
|
|
.console_index = 0,
|
|
.devfn = PCH_DEVFN_UART0,
|
|
.gpios = {
|
|
PAD_CFG_NF(GPP_C8, NONE, DEEP, NF1), /* UART0 RX */
|
|
PAD_CFG_NF(GPP_C9, NONE, DEEP, NF1), /* UART0 TX */
|
|
},
|
|
},
|
|
{
|
|
.console_index = 1,
|
|
.devfn = PCH_DEVFN_UART1,
|
|
.gpios = {
|
|
PAD_CFG_NF(GPP_C12, NONE, DEEP, NF1), /* UART1 RX */
|
|
PAD_CFG_NF(GPP_C13, NONE, DEEP, NF1), /* UART1 TX */
|
|
},
|
|
},
|
|
{
|
|
.console_index = 2,
|
|
.devfn = PCH_DEVFN_UART2,
|
|
.gpios = {
|
|
PAD_CFG_NF(GPP_C20, NONE, DEEP, NF1), /* UART2 RX */
|
|
PAD_CFG_NF(GPP_C21, NONE, DEEP, NF1), /* UART2 TX */
|
|
},
|
|
}
|
|
};
|
|
|
|
const int uart_ctrlr_config_size = ARRAY_SIZE(uart_ctrlr_config);
|