<gpio.h> chain-include <soc/gpio.h>. Change-Id: I112e41ad4c7ee638954dfe3f1ddfeb10c138459a Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/71807 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Fred Reitberger <reitbergerfred@gmail.com>
27 lines
715 B
C
27 lines
715 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#include <amdblocks/gpio.h>
|
|
#include <amdblocks/uart.h>
|
|
#include <commonlib/helpers.h>
|
|
#include <gpio.h>
|
|
#include <soc/aoac_defs.h>
|
|
#include <soc/iomap.h>
|
|
#include <types.h>
|
|
|
|
static const struct soc_uart_ctrlr_info uart_info[] = {
|
|
[0] = { APU_UART0_BASE, FCH_AOAC_DEV_UART0, "FUR0", {
|
|
PAD_NF(GPIO_138, UART0_TXD, PULL_NONE),
|
|
PAD_NF(GPIO_136, UART0_RXD, PULL_NONE),
|
|
} },
|
|
[1] = { APU_UART1_BASE, FCH_AOAC_DEV_UART1, "FUR1", {
|
|
PAD_NF(GPIO_143, UART1_TXD, PULL_NONE),
|
|
PAD_NF(GPIO_141, UART1_RXD, PULL_NONE),
|
|
} },
|
|
};
|
|
|
|
const struct soc_uart_ctrlr_info *soc_get_uart_ctrlr_info(size_t *num_ctrlrs)
|
|
{
|
|
*num_ctrlrs = ARRAY_SIZE(uart_info);
|
|
return uart_info;
|
|
}
|