aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/common/block/systemagent/systemagent.c
diff options
context:
space:
mode:
authorPratik Prajapati <pratikkumar.v.prajapati@intel.com>2017-08-28 14:48:55 -0700
committerAaron Durbin <adurbin@chromium.org>2017-09-14 14:57:47 +0000
commit82cdfa73d5fbe8ded890f5bb4079a67f57449db1 (patch)
tree7916155152eae0d9d887efede3b1cc8b15951366 /src/soc/intel/common/block/systemagent/systemagent.c
parentaa090cb6ea696d9b6a2869e16c53bd8b14a0e7d1 (diff)
intel/common/systemagent: Add API to get SOC specific PRMRR base and mask
Implement weak definition and SOC specific code would implement actual definition. Change-Id: I5e787a2603aaa475cb5c61558cc31ec0afcb4a8b Signed-off-by: Pratik Prajapati <pratikkumar.v.prajapati@intel.com> Reviewed-on: https://review.coreboot.org/21243 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/soc/intel/common/block/systemagent/systemagent.c')
-rw-r--r--src/soc/intel/common/block/systemagent/systemagent.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/soc/intel/common/block/systemagent/systemagent.c b/src/soc/intel/common/block/systemagent/systemagent.c
index cb7af41518..3be65f919b 100644
--- a/src/soc/intel/common/block/systemagent/systemagent.c
+++ b/src/soc/intel/common/block/systemagent/systemagent.c
@@ -36,6 +36,13 @@ __attribute__((weak)) void soc_add_fixed_mmio_resources(struct device *dev,
/* no-op */
}
+__attribute__((weak)) int soc_get_uncore_prmmr_base_and_mask(uint64_t *base,
+ uint64_t *mask)
+{
+ /* return failure for this dummy API */
+ return -1;
+}
+
/*
* Add all known fixed MMIO ranges that hang off the host bridge/memory
* controller device.