HAOUAS Elyes has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/36471 )
Change subject: sb/intel/i82801ix: Use CONFIG_HPET_ADDRESS value ......................................................................
sb/intel/i82801ix: Use CONFIG_HPET_ADDRESS value
Change-Id: Ifdd6537dfdbec1367538d01059fa543417eccc17 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M src/southbridge/intel/i82801ix/acpi/lpc.asl 1 file changed, 4 insertions(+), 4 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/71/36471/1
diff --git a/src/southbridge/intel/i82801ix/acpi/lpc.asl b/src/southbridge/intel/i82801ix/acpi/lpc.asl index 9d27b0b..07ce43a 100644 --- a/src/southbridge/intel/i82801ix/acpi/lpc.asl +++ b/src/southbridge/intel/i82801ix/acpi/lpc.asl @@ -79,7 +79,7 @@
Name(BUF0, ResourceTemplate() { - Memory32Fixed(ReadOnly, 0xfed00000, 0x400, FED0) + Memory32Fixed(ReadOnly, CONFIG_HPET_ADDRESS, 0x400, FED0) })
Method (_STA, 0) // Device Status @@ -102,15 +102,15 @@ If (HPTE) { CreateDWordField(BUF0, _SB.PCI0.LPCB.HPET.FED0._BAS, HPT0) If (Lequal(HPAS, 1)) { - Store(0xfed01000, HPT0) + Add(CONFIG_HPET_ADDRESS, 0x1000, HPT0) }
If (Lequal(HPAS, 2)) { - Store(0xfed02000, HPT0) + Add(CONFIG_HPET_ADDRESS, 0x2000, HPT0) }
If (Lequal(HPAS, 3)) { - Store(0xfed03000, HPT0) + Add(CONFIG_HPET_ADDRESS, 0x3000, HPT0) } }
HAOUAS Elyes has abandoned this change. ( https://review.coreboot.org/c/coreboot/+/36471 )
Change subject: sb/intel/i82801ix: Use CONFIG_HPET_ADDRESS value ......................................................................
Abandoned
see https://review.coreboot.org/c/coreboot/+/36458/4