aboutsummaryrefslogtreecommitdiff
path: root/src/soc/amd/mendocino
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2022-10-18 19:03:20 +0200
committerFelix Held <felix-coreboot@felixheld.de>2022-10-20 16:47:35 +0000
commit97e612586af1ece276b5dd3d3623bf80486c0b26 (patch)
tree1f74ddeac4553be8755f27b56c57e5bc123e9fac /src/soc/amd/mendocino
parent8ebdbbc3cb0aaca6581a7ba0a3ad92784ed502df (diff)
soc/amd/*/uart: commonize UART code and MMIO device driver
Now that the SoC-specific UART controller data and the common code part are cleanly separated, move the code to the common AMD UART support block folder. The code is identical to the UART code in Cezanne, Mendocino, Morgana and Picasso while Stoneyridge doesn't use the parts related to the MMIO device driver. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: Id9429dac44bc02147a839db89d06e8eded7f1af2 Reviewed-on: https://review.coreboot.org/c/coreboot/+/68561 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Fred Reitberger <reitbergerfred@gmail.com>
Diffstat (limited to 'src/soc/amd/mendocino')
-rw-r--r--src/soc/amd/mendocino/chipset_mendocino.cb10
-rw-r--r--src/soc/amd/mendocino/chipset_rembrandt.cb10
-rw-r--r--src/soc/amd/mendocino/uart.c95
3 files changed, 11 insertions, 104 deletions
diff --git a/src/soc/amd/mendocino/chipset_mendocino.cb b/src/soc/amd/mendocino/chipset_mendocino.cb
index 170b44cb68..23afdba8a3 100644
--- a/src/soc/amd/mendocino/chipset_mendocino.cb
+++ b/src/soc/amd/mendocino/chipset_mendocino.cb
@@ -88,10 +88,10 @@ chip soc/amd/mendocino
device mmio 0xfedc3000 alias i2c_1 off ops soc_amd_i2c_mmio_ops end
device mmio 0xfedc4000 alias i2c_2 off ops soc_amd_i2c_mmio_ops end
device mmio 0xfedc5000 alias i2c_3 off ops soc_amd_i2c_mmio_ops end
- device mmio 0xfedc9000 alias uart_0 off ops mendocino_uart_mmio_ops end
- device mmio 0xfedca000 alias uart_1 off ops mendocino_uart_mmio_ops end
- device mmio 0xfedce000 alias uart_2 off ops mendocino_uart_mmio_ops end
- device mmio 0xfedcf000 alias uart_3 off ops mendocino_uart_mmio_ops end
- device mmio 0xfedd1000 alias uart_4 off ops mendocino_uart_mmio_ops end
+ device mmio 0xfedc9000 alias uart_0 off ops amd_uart_mmio_ops end
+ device mmio 0xfedca000 alias uart_1 off ops amd_uart_mmio_ops end
+ device mmio 0xfedce000 alias uart_2 off ops amd_uart_mmio_ops end
+ device mmio 0xfedcf000 alias uart_3 off ops amd_uart_mmio_ops end
+ device mmio 0xfedd1000 alias uart_4 off ops amd_uart_mmio_ops end
device mmio 0xfedd5000 alias emmc off ops amd_emmc_mmio_ops end
end
diff --git a/src/soc/amd/mendocino/chipset_rembrandt.cb b/src/soc/amd/mendocino/chipset_rembrandt.cb
index 170b44cb68..23afdba8a3 100644
--- a/src/soc/amd/mendocino/chipset_rembrandt.cb
+++ b/src/soc/amd/mendocino/chipset_rembrandt.cb
@@ -88,10 +88,10 @@ chip soc/amd/mendocino
device mmio 0xfedc3000 alias i2c_1 off ops soc_amd_i2c_mmio_ops end
device mmio 0xfedc4000 alias i2c_2 off ops soc_amd_i2c_mmio_ops end
device mmio 0xfedc5000 alias i2c_3 off ops soc_amd_i2c_mmio_ops end
- device mmio 0xfedc9000 alias uart_0 off ops mendocino_uart_mmio_ops end
- device mmio 0xfedca000 alias uart_1 off ops mendocino_uart_mmio_ops end
- device mmio 0xfedce000 alias uart_2 off ops mendocino_uart_mmio_ops end
- device mmio 0xfedcf000 alias uart_3 off ops mendocino_uart_mmio_ops end
- device mmio 0xfedd1000 alias uart_4 off ops mendocino_uart_mmio_ops end
+ device mmio 0xfedc9000 alias uart_0 off ops amd_uart_mmio_ops end
+ device mmio 0xfedca000 alias uart_1 off ops amd_uart_mmio_ops end
+ device mmio 0xfedce000 alias uart_2 off ops amd_uart_mmio_ops end
+ device mmio 0xfedcf000 alias uart_3 off ops amd_uart_mmio_ops end
+ device mmio 0xfedd1000 alias uart_4 off ops amd_uart_mmio_ops end
device mmio 0xfedd5000 alias emmc off ops amd_emmc_mmio_ops end
end
diff --git a/src/soc/amd/mendocino/uart.c b/src/soc/amd/mendocino/uart.c
index 07e831c63f..d4bf2feae9 100644
--- a/src/soc/amd/mendocino/uart.c
+++ b/src/soc/amd/mendocino/uart.c
@@ -1,6 +1,5 @@
/* SPDX-License-Identifier: GPL-2.0-only */
-#include <amdblocks/aoac.h>
#include <amdblocks/gpio.h>
#include <amdblocks/uart.h>
#include <commonlib/helpers.h>
@@ -37,105 +36,13 @@ static const struct soc_uart_ctrlr_info uart_info[] = {
} },
};
-static const struct soc_uart_ctrlr_info *soc_get_uart_ctrlr_info(size_t *num_ctrlrs)
+const struct soc_uart_ctrlr_info *soc_get_uart_ctrlr_info(size_t *num_ctrlrs)
{
*num_ctrlrs = ARRAY_SIZE(uart_info);
return uart_info;
}
-uintptr_t get_uart_base(unsigned int idx)
-{
- size_t num_ctrlrs;
- const struct soc_uart_ctrlr_info *ctrlr = soc_get_uart_ctrlr_info(&num_ctrlrs);
-
- if (idx >= num_ctrlrs)
- return 0;
-
- return ctrlr[idx].base;
-}
-
-static enum cb_err get_uart_idx(uintptr_t base, const struct soc_uart_ctrlr_info *ctrlr,
- size_t num_ctrlrs, unsigned int *idx)
-{
- unsigned int i;
- for (i = 0; i < num_ctrlrs; i++) {
- if (base == ctrlr[i].base) {
- *idx = i;
- return CB_SUCCESS;
- }
- }
- return CB_ERR;
-}
-
-static enum cb_err get_uart_aoac_device(uintptr_t base, unsigned int *aoac_dev)
-{
- unsigned int idx;
- size_t num_ctrlrs;
- const struct soc_uart_ctrlr_info *ctrlr = soc_get_uart_ctrlr_info(&num_ctrlrs);
-
- if (get_uart_idx(base, ctrlr, num_ctrlrs, &idx) == CB_ERR)
- return CB_ERR;
-
- *aoac_dev = ctrlr[idx].aoac_device;
- return CB_SUCCESS;
-}
-
void clear_uart_legacy_config(void)
{
write16p(FCH_LEGACY_UART_DECODE, 0);
}
-
-void set_uart_config(unsigned int idx)
-{
- size_t num_ctrlrs;
- const struct soc_uart_ctrlr_info *ctrlr = soc_get_uart_ctrlr_info(&num_ctrlrs);
-
- if (idx >= num_ctrlrs)
- return;
-
- gpio_configure_pads(ctrlr[idx].mux, 2);
-}
-
-static const char *uart_acpi_name(const struct device *dev)
-{
- unsigned int idx;
- size_t num_ctrlrs;
- const struct soc_uart_ctrlr_info *ctrlr = soc_get_uart_ctrlr_info(&num_ctrlrs);
-
- if (get_uart_idx(dev->path.mmio.addr, ctrlr, num_ctrlrs, &idx) == CB_SUCCESS)
- return ctrlr[idx].acpi_name;
- else
- return NULL;
-}
-
-/* Even though this is called enable, it gets called for both enabled and disabled devices. */
-static void uart_enable(struct device *dev)
-{
- unsigned int dev_id;
-
- if (get_uart_aoac_device(dev->path.mmio.addr, &dev_id) == CB_ERR) {
- 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);
- }
-}
-
-static void uart_read_resources(struct device *dev)
-{
- mmio_resource_kb(dev, 0, dev->path.mmio.addr / KiB, 4);
-}
-
-struct device_operations mendocino_uart_mmio_ops = {
- .read_resources = uart_read_resources,
- .set_resources = noop_set_resources,
- .scan_bus = scan_static_bus,
- .enable = uart_enable,
- .acpi_name = uart_acpi_name,
- .acpi_fill_ssdt = uart_inject_ssdt,
-};