summaryrefslogtreecommitdiffstats
path: root/src/soc/amd/picasso/psp_verstage/svc.c
diff options
context:
space:
mode:
authorKangheui Won <khwon@chromium.org>2021-05-06 13:22:16 +1000
committerMartin Roth <martinroth@google.com>2021-05-10 04:05:30 +0000
commita5dae4c4d6a7e206fe3f968088d623b2ec776db4 (patch)
treebb24aeabc1c5bf549b08345faf46abc5a392e9e8 /src/soc/amd/picasso/psp_verstage/svc.c
parent411e2370817aea0043faafca0d5db4db978f6253 (diff)
downloadcoreboot-a5dae4c4d6a7e206fe3f968088d623b2ec776db4.tar.gz
coreboot-a5dae4c4d6a7e206fe3f968088d623b2ec776db4.tar.bz2
coreboot-a5dae4c4d6a7e206fe3f968088d623b2ec776db4.zip
psp_verstage: move platform-specific code to chipset.c
Move all platform-specific code except direct svc calls to chipset.c. There will be differences between each platforms and we can't put everything into svc.c. TEST=build firmware for zork Signed-off-by: Kangheui Won <khwon@chromium.org> Change-Id: Ie7a71d1632800072a17c26591e13e09e0269cf75 Reviewed-on: https://review.coreboot.org/c/coreboot/+/52963 Reviewed-by: Martin Roth <martinroth@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/amd/picasso/psp_verstage/svc.c')
-rw-r--r--src/soc/amd/picasso/psp_verstage/svc.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/soc/amd/picasso/psp_verstage/svc.c b/src/soc/amd/picasso/psp_verstage/svc.c
index 28e6bafa9590..d94ec769dad3 100644
--- a/src/soc/amd/picasso/psp_verstage/svc.c
+++ b/src/soc/amd/picasso/psp_verstage/svc.c
@@ -96,12 +96,6 @@ uint32_t svc_unmap_spi_rom(void *spi_rom_addr)
return retval;
}
-uint32_t update_psp_bios_dir(uint32_t *psp_dir_offset, uint32_t *bios_dir_offset)
-{
- return svc_update_psp_bios_dir(psp_dir_offset, bios_dir_offset,
- DIR_OFFSET_SET);
-}
-
uint32_t svc_update_psp_bios_dir(uint32_t *psp_dir_offset,
uint32_t *bios_dir_offset, enum dir_offset_operation operation)
{
@@ -112,11 +106,6 @@ uint32_t svc_update_psp_bios_dir(uint32_t *psp_dir_offset,
return retval;
}
-uint32_t save_uapp_data(void *address, uint32_t size)
-{
- return svc_save_uapp_data(UAPP_COPYBUF_CHROME_WORKBUF, address, size);
-}
-
uint32_t svc_save_uapp_data(enum uapp_copybuf type, void *address,
uint32_t size)
{
@@ -149,11 +138,6 @@ uint32_t svc_write_postcode(uint32_t postcode)
return retval;
}
-uint32_t get_max_workbuf_size(uint32_t *size)
-{
- return svc_get_max_workbuf_size(size);
-}
-
uint32_t svc_get_max_workbuf_size(uint32_t *size)
{
uint32_t retval = 0;