diff options
author | Mike Banon <mikebdp2@gmail.com> | 2020-04-17 13:39:27 +0300 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-08-17 07:13:05 +0000 |
commit | d5ffa6e1b391ff52eece53f7efd0c87eb1175ed6 (patch) | |
tree | d121bfcaea50703d09ddc9df273dff269ed4b68c /src/northbridge/amd/agesa/family16kb | |
parent | 2875df1c9e5fd32699d937623363109c24c91c0a (diff) |
nb/amd/agesa: read 256 bytes to SPD buffer instead of 128
Required for adding the XMP profiles support. SPD buffer is
already 256 bytes at AMD AGESA vendorcode, so this is fine.
Signed-off-by: Mike Banon <mikebdp2@gmail.com>
Change-Id: I7340b110477a4cc1ecb1c239181436e51952568f
Reviewed-on: https://review.coreboot.org/c/coreboot/+/40484
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/northbridge/amd/agesa/family16kb')
-rw-r--r-- | src/northbridge/amd/agesa/family16kb/dimmSpd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/northbridge/amd/agesa/family16kb/dimmSpd.c b/src/northbridge/amd/agesa/family16kb/dimmSpd.c index b0cac6f0e6..b20216f993 100644 --- a/src/northbridge/amd/agesa/family16kb/dimmSpd.c +++ b/src/northbridge/amd/agesa/family16kb/dimmSpd.c @@ -39,7 +39,7 @@ AGESA_STATUS AmdMemoryReadSPD (UINT32 unused1, UINTN unused2, AGESA_READ_SPD_PAR if (spdAddress == 0) return AGESA_ERROR; - int err = hudson_readSpd(spdAddress, (void *) info->Buffer, 128); + int err = hudson_readSpd(spdAddress, (void *) info->Buffer, 256); if (err) return AGESA_ERROR; return AGESA_SUCCESS; |