cpu,mb,nb,soc: use HPET_BASE_ADDRESS instead of magic number
Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: I570f7de90007b67d811d158ca33e099d5cc2d5d3 Reviewed-on: https://review.coreboot.org/c/coreboot/+/62308 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
|
||||
#include <console/console.h>
|
||||
#include <acpi/acpi.h>
|
||||
#include <arch/hpet.h>
|
||||
#include <device/pci_ops.h>
|
||||
#include <stdint.h>
|
||||
#include <cpu/intel/model_2065x/model_2065x.h>
|
||||
@@ -48,7 +49,7 @@ static void add_fixed_resources(struct device *dev, int index)
|
||||
0xff800000-0xffffffff ROM. */
|
||||
|
||||
resource = new_resource(dev, index++);
|
||||
resource->base = (resource_t) 0xfed00000;
|
||||
resource->base = (resource_t) HPET_BASE_ADDRESS;
|
||||
resource->size = (resource_t) 0x00100000;
|
||||
resource->flags = IORESOURCE_MEM | IORESOURCE_RESERVE | IORESOURCE_FIXED |
|
||||
IORESOURCE_STORED | IORESOURCE_ASSIGNED;
|
||||
|
@@ -1,5 +1,6 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include <arch/hpet.h>
|
||||
#include <cbmem.h>
|
||||
#include <console/console.h>
|
||||
#include <commonlib/bsd/helpers.h>
|
||||
@@ -26,7 +27,7 @@ static void add_fixed_resources(struct device *dev, int index)
|
||||
struct resource *resource;
|
||||
|
||||
resource = new_resource(dev, index++);
|
||||
resource->base = (resource_t) 0xfed00000;
|
||||
resource->base = (resource_t) HPET_BASE_ADDRESS;
|
||||
resource->size = (resource_t) 0x00100000;
|
||||
resource->flags = IORESOURCE_MEM
|
||||
| IORESOURCE_RESERVE
|
||||
|
Reference in New Issue
Block a user