aboutsummaryrefslogtreecommitdiff
path: root/src/soc/amd/picasso/chip.c
diff options
context:
space:
mode:
authorFurquan Shaikh <furquan@google.com>2020-06-03 16:50:32 -0700
committerPatrick Georgi <pgeorgi@google.com>2020-06-06 09:44:39 +0000
commitb07e262c48eb964617c4413a88c37f0db31805b6 (patch)
tree7e97d8394f48b7ffd1460c3e09e1ce71dea0748e /src/soc/amd/picasso/chip.c
parent071182ade30da4bdba6da03ce79abf8df91ee480 (diff)
soc/amd/picasso: Add device operations for UART MMIO devices
This change adds device_operations for UART MMIO devices that provides following operations: 1. uart_acpi_name: Returns ACPI name of UART device. Generation of UART device node is not yet moved to SSDT, but will be done in follow-up CLs. 2. scan_bus: Uses scan_static_bus to scan devices added under the UART devices. This allows mainboard to add devices under the UART MMIO device. Change-Id: I18abbe88952e7006668657eb1d0c177e53e95850 Signed-off-by: Furquan Shaikh <furquan@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/42068 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Raul Rangel <rrangel@chromium.org>
Diffstat (limited to 'src/soc/amd/picasso/chip.c')
-rw-r--r--src/soc/amd/picasso/chip.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/soc/amd/picasso/chip.c b/src/soc/amd/picasso/chip.c
index d364b9a88c..2e5fae58e5 100644
--- a/src/soc/amd/picasso/chip.c
+++ b/src/soc/amd/picasso/chip.c
@@ -15,6 +15,8 @@
/* Supplied by i2c.c */
extern struct device_operations picasso_i2c_mmio_ops;
+/* Supplied by uart.c */
+extern struct device_operations picasso_uart_mmio_ops;
struct device_operations cpu_bus_ops = {
.read_resources = noop_read_resources,
@@ -126,6 +128,12 @@ static void set_mmio_dev_ops(struct device *dev)
case APU_I2C4_BASE:
dev->ops = &picasso_i2c_mmio_ops;
break;
+ case APU_UART0_BASE:
+ case APU_UART1_BASE:
+ case APU_UART2_BASE:
+ case APU_UART3_BASE:
+ dev->ops = &picasso_uart_mmio_ops;
+ break;
}
}