2020-04-04 18:50:57 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2019-04-22 22:55:16 +02:00
|
|
|
|
|
|
|
#include <console/uart.h>
|
2019-06-20 18:29:29 +02:00
|
|
|
#include <commonlib/helpers.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>
|
|
|
|
#include <amdblocks/acpimmio.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>
|
|
|
|
|
|
|
|
static const struct _uart_info {
|
|
|
|
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-06-13 09:16:26 +02:00
|
|
|
/*
|
2020-06-16 15:35:20 +02:00
|
|
|
* Don't provide uart_platform_base and uart_platform_refclk functions if PICASSO_CONSOLE_UART
|
2020-06-13 09:16:26 +02:00
|
|
|
* isn't selected. Those two functions are used by the console UART driver and need to be
|
|
|
|
* provided exactly once and only by the UART that is used for console.
|
|
|
|
*
|
|
|
|
* TODO: Replace the #if block by factoring out the two functions into a different compilation
|
|
|
|
* unit.
|
|
|
|
*/
|
2020-06-16 15:35:20 +02:00
|
|
|
#if CONFIG(PICASSO_CONSOLE_UART)
|
2020-06-13 09:16:26 +02:00
|
|
|
|
2019-04-22 22:55:16 +02:00
|
|
|
uintptr_t uart_platform_base(int idx)
|
|
|
|
{
|
2020-06-10 19:39:51 +02:00
|
|
|
if (idx < 0 || 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-13 09:16:26 +02:00
|
|
|
unsigned int uart_platform_refclk(void)
|
|
|
|
{
|
|
|
|
return CONFIG(PICASSO_UART_48MZ) ? 48000000 : 115200 * 16;
|
|
|
|
}
|
|
|
|
|
2020-06-16 15:35:20 +02:00
|
|
|
#endif /* PICASSO_CONSOLE_UART */
|
2020-06-13 09:16:26 +02:00
|
|
|
|
2020-06-12 00:27:49 +02:00
|
|
|
void clear_uart_legacy_config(void)
|
|
|
|
{
|
|
|
|
write16((void *)FCH_UART_LEGACY_DECODE, 0);
|
|
|
|
}
|
|
|
|
|
2019-06-20 18:29:29 +02:00
|
|
|
void set_uart_config(int idx)
|
|
|
|
{
|
|
|
|
uint32_t uart_ctrl;
|
|
|
|
uint16_t uart_leg;
|
|
|
|
|
2020-06-10 19:39:51 +02:00
|
|
|
if (idx < 0 || idx >= ARRAY_SIZE(uart_info))
|
2019-06-20 18:29:29 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
program_gpios(uart_info[idx].mux, 2);
|
|
|
|
|
|
|
|
if (CONFIG(PICASSO_UART_1_8MZ)) {
|
|
|
|
uart_ctrl = sm_pci_read32(SMB_UART_CONFIG);
|
|
|
|
uart_ctrl |= 1 << (SMB_UART_1_8M_SHIFT + idx);
|
|
|
|
sm_pci_write32(SMB_UART_CONFIG, uart_ctrl);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (CONFIG(PICASSO_UART_LEGACY) && idx != 3) {
|
|
|
|
/* Force 3F8 if idx=0, 2F8 if idx=1, 3E8 if idx=2 */
|
|
|
|
|
|
|
|
/* TODO: make clearer once PPR is updated */
|
|
|
|
uart_leg = (idx << 8) | (idx << 10) | (idx << 12) | (idx << 14);
|
|
|
|
if (idx == 0)
|
|
|
|
uart_leg |= 1 << FCH_LEGACY_3F8_SH;
|
|
|
|
else if (idx == 1)
|
|
|
|
uart_leg |= 1 << FCH_LEGACY_2F8_SH;
|
|
|
|
else if (idx == 2)
|
|
|
|
uart_leg |= 1 << FCH_LEGACY_3E8_SH;
|
|
|
|
|
|
|
|
write16((void *)FCH_UART_LEGACY_DECODE, uart_leg);
|
|
|
|
}
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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,
|
|
|
|
};
|