diff options
author | Raul E Rangel <rrangel@chromium.org> | 2022-02-24 10:58:29 -0700 |
---|---|---|
committer | Raul Rangel <rrangel@chromium.org> | 2022-02-26 00:09:18 +0000 |
commit | 5e0ed5016c8096a58b3d8758495c0969e0c1052c (patch) | |
tree | 1ea1128140165e1d52aa05a322e2b4cd2d8cd7d4 /src/soc/amd/picasso | |
parent | ea4ad0ddf980e956a4ba3f35223208d2d3ecf1d3 (diff) |
soc/amd/{common/psp_verstage,soc/picasso}: Remove workbuf shrinking
This feature was never used. Let's remove it to keep things simple.
BUG=221231786
TEST=Boot test guybrush and morphius and verify transfer buffer is
correctly passed.
Signed-off-by: Raul E Rangel <rrangel@chromium.org>
Change-Id: I93a284db919f82763dcd31cec76af4b773eb3f80
Reviewed-on: https://review.coreboot.org/c/coreboot/+/62345
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Rob Barnes <robbarnes@google.com>
Diffstat (limited to 'src/soc/amd/picasso')
-rw-r--r-- | src/soc/amd/picasso/psp_verstage/chipset.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/soc/amd/picasso/psp_verstage/chipset.c b/src/soc/amd/picasso/psp_verstage/chipset.c index 4bdb873b17..1cfcb0a558 100644 --- a/src/soc/amd/picasso/psp_verstage/chipset.c +++ b/src/soc/amd/picasso/psp_verstage/chipset.c @@ -14,11 +14,6 @@ uint32_t save_uapp_data(void *address, uint32_t size) return svc_save_uapp_data(UAPP_COPYBUF_CHROME_WORKBUF, address, size); } -uint32_t get_max_workbuf_size(uint32_t *size) -{ - return svc_get_max_workbuf_size(size); -} - uint32_t get_bios_dir_addr(struct embedded_firmware *ef_table) { return ef_table->bios1_entry; |