summaryrefslogtreecommitdiffstats
path: root/resources/utilities/ich9deblob/src/gbe/gbe.h
diff options
context:
space:
mode:
authorFrancis Rowe <info@gluglug.org.uk>2014-12-26 16:08:06 (EST)
committer Francis Rowe <info@gluglug.org.uk>2014-12-26 16:30:21 (EST)
commitbc149e7d986f4c11aa85df8d8499dc367b34a855 (patch)
tree6d044c404c4e699430d90d7be93b8b0e22b2c9b9 /resources/utilities/ich9deblob/src/gbe/gbe.h
parent4f2bbba7b75e96a13ac26cad501f78dbe894ba4a (diff)
downloadlibreboot-bc149e7d986f4c11aa85df8d8499dc367b34a855.zip
libreboot-bc149e7d986f4c11aa85df8d8499dc367b34a855.tar.gz
libreboot-bc149e7d986f4c11aa85df8d8499dc367b34a855.tar.bz2
ich9deblob: fill padding in Gbe with 0xFF
Words 40h to 53h had unknown data that could not be fonud in the datasheets. Setting them to 0xFFFF doesn't seem to cause any issues for users.
Diffstat (limited to 'resources/utilities/ich9deblob/src/gbe/gbe.h')
-rw-r--r--resources/utilities/ich9deblob/src/gbe/gbe.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/resources/utilities/ich9deblob/src/gbe/gbe.h b/resources/utilities/ich9deblob/src/gbe/gbe.h
index 0a9b114..5d6348c 100644
--- a/resources/utilities/ich9deblob/src/gbe/gbe.h
+++ b/resources/utilities/ich9deblob/src/gbe/gbe.h
@@ -399,7 +399,9 @@ struct GBEREGIONRECORD_4K {
unsigned short reservedWords24to2Fh[12]; /* Words 24-2F: Reserved. These should all be 0x0000 according to datasheet and deblobbed_descriptor.bin */
struct GBE_PXE_SOFTWARE_REGION pxeSoftwareRegion; /* Words 30-3E: PXE Software Region */
unsigned short checkSum; /* when added to the sum of all words above, this should match GBECHECKSUMTOTAL */
- unsigned char padding1[3968];
+
+ /* set all bytes in here to 0xFF */
+ unsigned char padding[3968];
};
/* main and backup region in gbe */