amdfwtool: Increase MAX_PSP_ENTRIES
The MAX_PSP_ENTRIES constant reserves space for the psp directory table entries. This table is aligned to 4K and the next binary is also aligned to 4K. The number of psp directory entries on Birman exceeds the previous limit, so increase it to the maximum that will fit in a 4K block. TEST=timeless builds for Birman unchanged Signed-off-by: Fred Reitberger <reitbergerfred@gmail.com> Change-Id: I297edc9cccffde0ad1ce7461b375542f9f2f7c23 Reviewed-on: https://review.coreboot.org/c/coreboot/+/73653 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Bao Zheng <fishbaozi@gmail.com> Reviewed-by: Nikolai Vyssotski <nikolai.vyssotski@amd.corp-partner.google.com> Reviewed-by: Martin Roth <martin.roth@amd.corp-partner.google.com>
This commit is contained in:
parent
bf0b87d813
commit
a194e6252f
|
@ -219,7 +219,7 @@ typedef struct _psp_directory_table {
|
|||
psp_directory_entry entries[];
|
||||
} __attribute__((packed, aligned(16))) psp_directory_table;
|
||||
|
||||
#define MAX_PSP_ENTRIES 0x2f
|
||||
#define MAX_PSP_ENTRIES 0xff
|
||||
|
||||
typedef struct _psp_combo_header {
|
||||
uint32_t cookie;
|
||||
|
|
Loading…
Reference in New Issue