summaryrefslogtreecommitdiffstats
path: root/src/soc/amd/stoneyridge
diff options
context:
space:
mode:
authorFelix Held <felix.held@amd.corp-partner.google.com>2021-10-14 21:15:51 +0200
committerFelix Held <felix-coreboot@felixheld.de>2021-10-15 19:19:45 +0000
commit640ec2581b1cdbb9dca385b49a32d2bdb1d4d9c5 (patch)
tree2760dade81ae9e074c8c236c31d99e41b448834e /src/soc/amd/stoneyridge
parent9836b37793937d710a66a9f9e49fdb5b8f7a55de (diff)
downloadcoreboot-640ec2581b1cdbb9dca385b49a32d2bdb1d4d9c5.tar.gz
coreboot-640ec2581b1cdbb9dca385b49a32d2bdb1d4d9c5.tar.bz2
coreboot-640ec2581b1cdbb9dca385b49a32d2bdb1d4d9c5.zip
soc/amd/stoneyridge/acpi/sb_fch: use I2C[ABCD]_BASE_ADDRESS defines
Now that the I2C[ABCD]_BASE_ADDRESS defines aren't macros that calculate the MMIO addresses any more, those defines can also be used in the ACPI code. TEST=Timeless build results in identical image for Google/Treeya. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: I7de2f83dc2f8061d8f1735caf10314bcddb2d3fa Reviewed-on: https://review.coreboot.org/c/coreboot/+/58337 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Raul Rangel <rrangel@chromium.org>
Diffstat (limited to 'src/soc/amd/stoneyridge')
-rw-r--r--src/soc/amd/stoneyridge/acpi/sb_fch.asl8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/soc/amd/stoneyridge/acpi/sb_fch.asl b/src/soc/amd/stoneyridge/acpi/sb_fch.asl
index bbb5235233fa..b389c66aeb61 100644
--- a/src/soc/amd/stoneyridge/acpi/sb_fch.asl
+++ b/src/soc/amd/stoneyridge/acpi/sb_fch.asl
@@ -74,7 +74,7 @@ Device (I2CA) {
Name (_CRS, ResourceTemplate()
{
IRQ (Edge, ActiveHigh, Exclusive) { 3 }
- Memory32Fixed (ReadWrite, 0xFEDC2000, 0x1000)
+ Memory32Fixed (ReadWrite, I2CA_BASE_ADDRESS, 0x1000)
})
Method (_STA, 0x0, NotSerialized)
@@ -90,7 +90,7 @@ Device (I2CB)
Name (_CRS, ResourceTemplate()
{
IRQ (Edge, ActiveHigh, Exclusive) { 15 }
- Memory32Fixed (ReadWrite, 0xFEDC3000, 0x1000)
+ Memory32Fixed (ReadWrite, I2CB_BASE_ADDRESS, 0x1000)
})
Method (_STA, 0x0, NotSerialized)
{
@@ -104,7 +104,7 @@ Device (I2CC) {
Name (_CRS, ResourceTemplate()
{
IRQ (Edge, ActiveHigh, Exclusive) { 6 }
- Memory32Fixed (ReadWrite, 0xFEDC4000, 0x1000)
+ Memory32Fixed (ReadWrite, I2CC_BASE_ADDRESS, 0x1000)
})
Method (_STA, 0x0, NotSerialized)
@@ -119,7 +119,7 @@ Device (I2CD)
Name (_UID, 0x3)
Name (_CRS, ResourceTemplate() {
IRQ (Edge, ActiveHigh, Exclusive) { 14 }
- Memory32Fixed(ReadWrite, 0xFEDC5000, 0x1000)
+ Memory32Fixed(ReadWrite, I2CD_BASE_ADDRESS, 0x1000)
})
Method (_STA, 0x0, NotSerialized)
{