summaryrefslogtreecommitdiff
path: root/src/soc/intel
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/intel')
-rw-r--r--src/soc/intel/apollolake/systemagent.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/soc/intel/apollolake/systemagent.c b/src/soc/intel/apollolake/systemagent.c
index b61f5fabeb..4db4d49ba5 100644
--- a/src/soc/intel/apollolake/systemagent.c
+++ b/src/soc/intel/apollolake/systemagent.c
@@ -32,15 +32,11 @@ void soc_add_fixed_mmio_resources(struct device *dev, int *index)
return;
if (MCHBAR32(GFXVTBAR) & VTBAR_ENABLED) {
- mmio_resource_kb(dev, *index,
- (MCHBAR64(GFXVTBAR) & VTBAR_MASK) / KiB,
- VTBAR_SIZE / KiB);
+ mmio_range(dev, *index, MCHBAR64(GFXVTBAR) & VTBAR_MASK, VTBAR_SIZE);
(*index)++;
}
if (MCHBAR32(DEFVTBAR) & VTBAR_ENABLED) {
- mmio_resource_kb(dev, *index,
- (MCHBAR64(DEFVTBAR) & VTBAR_MASK) / KiB,
- VTBAR_SIZE / KiB);
+ mmio_range(dev, *index, MCHBAR64(DEFVTBAR) & VTBAR_MASK, VTBAR_SIZE);
(*index)++;
}
}