summaryrefslogtreecommitdiffstats
path: root/src/southbridge/amd/amd8111/lpc.c
diff options
context:
space:
mode:
authorJonathan A. Kollasch <jakllsch@kollasch.net>2015-07-15 13:47:33 -0500
committerJonathan A. Kollasch <jakllsch@kollasch.net>2015-08-09 21:16:41 +0200
commit6f0e8bdc169e152a8065694c5ef69f0a654d9f31 (patch)
tree8d187ec3f10def0506be034caf715f423e0ea2a7 /src/southbridge/amd/amd8111/lpc.c
parent0dee57837b213c4c3f61feecb24a98bcb9b0fb85 (diff)
downloadcoreboot-6f0e8bdc169e152a8065694c5ef69f0a654d9f31.tar.gz
coreboot-6f0e8bdc169e152a8065694c5ef69f0a654d9f31.tar.bz2
coreboot-6f0e8bdc169e152a8065694c5ef69f0a654d9f31.zip
amd8111, ck804, mcp55: use CONFIG_HPET_ADDRESS
As acpi_write_hpet() uses CONFIG_HPET_ADDRESS in the HPET table we need to use CONFIG_HPET_ADDRESS when assigning it to the device. Change-Id: I656f917658f1c1717bb3653fa048a6d36fca2454 Signed-off-by: Jonathan A. Kollasch <jakllsch@kollasch.net> Reviewed-on: http://review.coreboot.org/10925 Tested-by: build bot (Jenkins) Reviewed-by: Idwer Vollering <vidwer@gmail.com> Tested-by: Raptor Engineering Automated Test Stand <noreply@raptorengineeringinc.com> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/southbridge/amd/amd8111/lpc.c')
-rw-r--r--src/southbridge/amd/amd8111/lpc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/southbridge/amd/amd8111/lpc.c b/src/southbridge/amd/amd8111/lpc.c
index df3eff4f51bc..8841760c02fd 100644
--- a/src/southbridge/amd/amd8111/lpc.c
+++ b/src/southbridge/amd/amd8111/lpc.c
@@ -26,7 +26,7 @@ static void enable_hpet(struct device *dev)
{
unsigned long hpet_address;
- pci_write_config32(dev,0xa0, 0xfed00001);
+ pci_write_config32(dev, 0xa0, CONFIG_HPET_ADDRESS|1);
hpet_address = pci_read_config32(dev,0xa0)& 0xfffffffe;
printk(BIOS_DEBUG, "enabling HPET @0x%lx\n", hpet_address);