Subrata Banik has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/40336 )
Change subject: soc/intel/common/block: Update SA resource length to support 64 bit ......................................................................
soc/intel/common/block: Update SA resource length to support 64 bit
This patch provides an option for accommodating 64 bit width resource request.
Change-Id: I9a8448af7e9f26c8e0176e58e4fe253a6e77b69a Signed-off-by: Subrata Banik subrata.banik@intel.com --- M src/soc/intel/common/block/include/intelblocks/systemagent.h 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/36/40336/1
diff --git a/src/soc/intel/common/block/include/intelblocks/systemagent.h b/src/soc/intel/common/block/include/intelblocks/systemagent.h index c6aa4b4..04028b5 100644 --- a/src/soc/intel/common/block/include/intelblocks/systemagent.h +++ b/src/soc/intel/common/block/include/intelblocks/systemagent.h @@ -32,13 +32,13 @@ * INDEX = Either PCI configuration space registers or MMIO offsets * mapped from REG. * BASE = 64 bit Address. - * SIZE = base length + * SIZE = 64 bit base length * DESCRIPTION = Name of the register/offset. */ struct sa_mmio_descriptor { unsigned int index; uint64_t base; - size_t size; + uint64_t size; const char *description; };