2020-04-04 18:50:57 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2019-04-22 22:55:16 +02:00
|
|
|
|
2020-06-12 00:57:23 +02:00
|
|
|
#include <console/console.h>
|
2019-06-20 18:29:29 +02:00
|
|
|
#include <commonlib/helpers.h>
|
2021-01-13 03:37:21 +01:00
|
|
|
#include <device/device.h>
|
2019-12-03 07:03:27 +01:00
|
|
|
#include <device/mmio.h>
|
2019-06-20 18:29:29 +02:00
|
|
|
#include <amdblocks/gpio_banks.h>
|
2020-11-30 18:18:35 +01:00
|
|
|
#include <amdblocks/aoac.h>
|
2021-01-12 23:29:30 +01:00
|
|
|
#include <amdblocks/uart.h>
|
2021-06-15 16:24:10 +02:00
|
|
|
#include <soc/aoac_defs.h>
|
2019-04-22 22:55:16 +02:00
|
|
|
#include <soc/southbridge.h>
|
2019-06-20 18:29:29 +02:00
|
|
|
#include <soc/gpio.h>
|
2020-06-18 15:54:43 +02:00
|
|
|
#include <soc/uart.h>
|
2020-09-12 01:28:46 +02:00
|
|
|
#include <types.h>
|
2019-06-20 18:29:29 +02:00
|
|
|
|
2021-01-14 00:58:53 +01:00
|
|
|
static const struct {
|
2019-06-20 18:29:29 +02:00
|
|
|
uintptr_t base;
|
|
|
|
struct soc_amd_gpio mux[2];
|
|
|
|
} uart_info[] = {
|
|
|
|
[0] = { APU_UART0_BASE, {
|
|
|
|
PAD_NF(GPIO_138, UART0_TXD, PULL_NONE),
|
|
|
|
PAD_NF(GPIO_136, UART0_RXD, PULL_NONE),
|
|
|
|
} },
|
|
|
|
[1] = { APU_UART1_BASE, {
|
|
|
|
PAD_NF(GPIO_143, UART1_TXD, PULL_NONE),
|
|
|
|
PAD_NF(GPIO_141, UART1_RXD, PULL_NONE),
|
|
|
|
} },
|
|
|
|
[2] = { APU_UART2_BASE, {
|
|
|
|
PAD_NF(GPIO_137, UART2_TXD, PULL_NONE),
|
|
|
|
PAD_NF(GPIO_135, UART2_RXD, PULL_NONE),
|
|
|
|
} },
|
|
|
|
[3] = { APU_UART3_BASE, {
|
|
|
|
PAD_NF(GPIO_140, UART3_TXD, PULL_NONE),
|
|
|
|
PAD_NF(GPIO_142, UART3_RXD, PULL_NONE),
|
|
|
|
} },
|
|
|
|
};
|
2019-04-22 22:55:16 +02:00
|
|
|
|
2020-09-11 14:53:03 +02:00
|
|
|
uintptr_t get_uart_base(unsigned int idx)
|
2019-04-22 22:55:16 +02:00
|
|
|
{
|
2020-09-11 14:53:03 +02:00
|
|
|
if (idx >= ARRAY_SIZE(uart_info))
|
2019-04-22 22:55:16 +02:00
|
|
|
return 0;
|
|
|
|
|
2019-06-20 18:29:29 +02:00
|
|
|
return uart_info[idx].base;
|
|
|
|
}
|
|
|
|
|
2020-06-12 00:27:49 +02:00
|
|
|
void clear_uart_legacy_config(void)
|
|
|
|
{
|
2020-01-30 18:54:28 +01:00
|
|
|
write16((void *)FCH_LEGACY_UART_DECODE, 0);
|
|
|
|
}
|
|
|
|
|
2020-09-11 14:53:03 +02:00
|
|
|
void set_uart_config(unsigned int idx)
|
2019-06-20 18:29:29 +02:00
|
|
|
{
|
2020-09-11 14:53:03 +02:00
|
|
|
if (idx >= ARRAY_SIZE(uart_info))
|
2019-06-20 18:29:29 +02:00
|
|
|
return;
|
|
|
|
|
2021-09-22 16:36:12 +02:00
|
|
|
gpio_configure_pads(uart_info[idx].mux, 2);
|
2019-04-22 22:55:16 +02:00
|
|
|
}
|
|
|
|
|
2020-06-04 01:50:32 +02:00
|
|
|
static const char *uart_acpi_name(const struct device *dev)
|
|
|
|
{
|
|
|
|
switch (dev->path.mmio.addr) {
|
|
|
|
case APU_UART0_BASE:
|
|
|
|
return "FUR0";
|
|
|
|
case APU_UART1_BASE:
|
|
|
|
return "FUR1";
|
|
|
|
case APU_UART2_BASE:
|
|
|
|
return "FUR2";
|
|
|
|
case APU_UART3_BASE:
|
|
|
|
return "FUR3";
|
|
|
|
default:
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-12 00:57:23 +02:00
|
|
|
/* Even though this is called enable, it gets called for both enabled and disabled devices. */
|
|
|
|
static void uart_enable(struct device *dev)
|
|
|
|
{
|
2020-09-12 01:30:25 +02:00
|
|
|
unsigned int dev_id;
|
2020-06-12 00:57:23 +02:00
|
|
|
|
|
|
|
switch (dev->path.mmio.addr) {
|
|
|
|
case APU_UART0_BASE:
|
|
|
|
dev_id = FCH_AOAC_DEV_UART0;
|
|
|
|
break;
|
|
|
|
case APU_UART1_BASE:
|
|
|
|
dev_id = FCH_AOAC_DEV_UART1;
|
|
|
|
break;
|
|
|
|
case APU_UART2_BASE:
|
|
|
|
dev_id = FCH_AOAC_DEV_UART2;
|
|
|
|
break;
|
|
|
|
case APU_UART3_BASE:
|
|
|
|
dev_id = FCH_AOAC_DEV_UART3;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
printk(BIOS_ERR, "%s: Unknown device: %s\n", __func__, dev_path(dev));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dev->enabled) {
|
|
|
|
power_on_aoac_device(dev_id);
|
|
|
|
wait_for_aoac_enabled(dev_id);
|
|
|
|
} else {
|
|
|
|
power_off_aoac_device(dev_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-04 01:50:32 +02:00
|
|
|
struct device_operations picasso_uart_mmio_ops = {
|
|
|
|
.read_resources = noop_read_resources,
|
|
|
|
.set_resources = noop_set_resources,
|
|
|
|
.scan_bus = scan_static_bus,
|
|
|
|
.acpi_name = uart_acpi_name,
|
2020-06-12 00:57:23 +02:00
|
|
|
.enable = uart_enable,
|
|
|
|
.acpi_fill_ssdt = uart_inject_ssdt,
|
2020-06-04 01:50:32 +02:00
|
|
|
};
|