diff options
author | Tim Wawrzynczak <twawrzynczak@chromium.org> | 2021-03-22 10:57:02 -0600 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-03-28 16:04:44 +0000 |
commit | e2852579b8f889416c454a92b9c74b317fa508ae (patch) | |
tree | 96e5524f36f553ad50e9cfef9e973f50e2707114 /src/soc/intel/tigerlake/include | |
parent | 5de0897671f0c93815ed9de38fc720337e9dade6 (diff) |
soc/intel/tigerlake: Fix REG_BASE_SIZE
REG_BASE_SIZE is supposed to represent the size of the REGBAR MMIO space
in KiB. It is currently sized at 4MiB, but this is incorrect, EDS Vol. 2
indicates REGBAR is 16MiB in size, therefore update the constant to
reflect this.
Signed-off-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
Change-Id: I0cfbe5b8bb07faa854efd4bf70640daa117f2bb2
Reviewed-on: https://review.coreboot.org/c/coreboot/+/51754
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Furquan Shaikh <furquan@google.com>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/soc/intel/tigerlake/include')
-rw-r--r-- | src/soc/intel/tigerlake/include/soc/iomap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/tigerlake/include/soc/iomap.h b/src/soc/intel/tigerlake/include/soc/iomap.h index cdd370b6c1..dec1950964 100644 --- a/src/soc/intel/tigerlake/include/soc/iomap.h +++ b/src/soc/intel/tigerlake/include/soc/iomap.h @@ -57,7 +57,7 @@ #define VTVC0_BASE_SIZE 0x1000 #define REG_BASE_ADDRESS 0xfb000000 -#define REG_BASE_SIZE 0x1000 +#define REG_BASE_SIZE 0x4000 #define HPET_BASE_ADDRESS 0xfed00000 |