soc/apollolake/acpi: Fill ACPI HPET table

HPET table is required to report integrated HPET timer to kernel.
Without HPET table added,Linux kernel will panic when loading timer
driver.

Change-Id: I7368bc29f4e03d5882dcfc4a770fa7bfbc6c26a0
Signed-off-by: Zhao, Lijian <lijian.zhao@intel.com>
Reviewed-on: https://review.coreboot.org/13374
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
Zhao, Lijian
2015-12-01 09:14:20 -08:00
committed by Martin Roth
parent a7ff9c59a1
commit 30461a9197
3 changed files with 12 additions and 0 deletions

View File

@ -13,6 +13,7 @@
#include <device/device.h>
#include <device/pci.h>
#include <device/pci_ids.h>
#include <soc/acpi.h>
#include <soc/pci_ids.h>
static void soc_lpc_add_io_resources(device_t dev)
@ -39,6 +40,7 @@ static struct device_operations device_ops = {
.read_resources = &soc_lpc_read_resources,
.set_resources = &pci_dev_set_resources,
.enable_resources = &pci_dev_enable_resources,
.write_acpi_tables = southbridge_write_acpi_tables,
};
static const struct pci_driver soc_lpc __pci_driver = {