summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/tigerlake
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2023-07-05 11:59:54 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2023-07-12 09:31:17 +0000
commit0a60d1095436d4b53e660d9ea0ded48b699887d1 (patch)
tree4b42a7d0b1a30c9088862d0b52a7de32419f625c /src/soc/intel/tigerlake
parentd5e70b2131746a0d398dc49695f363073e9202fc (diff)
downloadcoreboot-0a60d1095436d4b53e660d9ea0ded48b699887d1.tar.gz
coreboot-0a60d1095436d4b53e660d9ea0ded48b699887d1.tar.bz2
coreboot-0a60d1095436d4b53e660d9ea0ded48b699887d1.zip
soc/intel/*/pmc.c: Use newer function for resource declarations
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Change-Id: I852d6daebdcb8461c18e7c0eaf1c54ad7c59c0c1 Reviewed-on: https://review.coreboot.org/c/coreboot/+/76287 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Subrata Banik <subratabanik@google.com> Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-by: Lean Sheng Tan <sheng.tan@9elements.com>
Diffstat (limited to 'src/soc/intel/tigerlake')
-rw-r--r--src/soc/intel/tigerlake/pmc.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/soc/intel/tigerlake/pmc.c b/src/soc/intel/tigerlake/pmc.c
index 51d46f8a33c3..0bba1a0040c6 100644
--- a/src/soc/intel/tigerlake/pmc.c
+++ b/src/soc/intel/tigerlake/pmc.c
@@ -84,8 +84,7 @@ static void soc_pmc_read_resources(struct device *dev)
struct resource *res;
/* Add the fixed MMIO resource */
- mmio_resource_kb(dev, PWRMBASE, PCH_PWRM_BASE_ADDRESS / KiB,
- PCH_PWRM_BASE_SIZE / KiB);
+ mmio_range(dev, PWRMBASE, PCH_PWRM_BASE_ADDRESS, PCH_PWRM_BASE_SIZE);
/* Add the fixed I/O resource */
res = new_resource(dev, 1);