diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2023-11-04 06:08:41 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-11-06 19:06:43 +0000 |
commit | 49509473c753efa0b5bccf4d2fac5ddda1ee417e (patch) | |
tree | ae87e80f3084b26dbf7289360e9d31848ec98c00 | |
parent | 3eff900386c84637c95c884b7b752f8269a6eb2e (diff) |
soc/amd/genoa/chipset.dt: add UART device ops
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: I9fc155fe76c05fefd4ce31ae6b96dcc4527b6abc
Reviewed-on: https://review.coreboot.org/c/coreboot/+/78901
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Varshit Pandya <pandyavarshit@gmail.com>
-rw-r--r-- | src/soc/amd/genoa/chipset.cb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/soc/amd/genoa/chipset.cb b/src/soc/amd/genoa/chipset.cb index 8b7d39ec18..e2d0e2ec85 100644 --- a/src/soc/amd/genoa/chipset.cb +++ b/src/soc/amd/genoa/chipset.cb @@ -214,9 +214,9 @@ chip soc/amd/genoa device mmio 0xfedc5000 alias i2c_3 off end device mmio 0xfedc6000 alias i2c_4 off end device mmio 0xfedcb000 alias i2c_5 off end - device mmio 0xfedc9000 alias uart_0 off end - device mmio 0xfedca000 alias uart_1 off end - device mmio 0xfedce000 alias uart_2 off 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 0xfedd2000 alias i3c_0 off end device mmio 0xfedd3000 alias i3c_1 off end device mmio 0xfedd4000 alias i3c_2 off end |