Skip to content

Commit

Permalink
soc/amd/sabrina/psp_verstage: Unify SVC ID
Browse files Browse the repository at this point in the history
In Sabrina, PSP verstage uses a unified SVC call ID with sub-commands.
Update the SVC calls for Sabrina to pass the SVC_VERSTAGE_CMD (command
ID) with individual subcommands and the corresponding parameters.

BUG=b:220848545, b:217414563
TEST=Build the Skyrim BIOS image with PSP verstage enabled.

Change-Id: I56be51aa1dfb00e5f0945014600de2bbbec289db
Signed-off-by: Karthikeyan Ramasubramanian <kramasub@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/63729
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Raul Rangel <rrangel@chromium.org>
  • Loading branch information
karthikr-google authored and Martin L Roth committed Apr 24, 2022
1 parent 56ab575 commit 0fa0a3e
Show file tree
Hide file tree
Showing 3 changed files with 220 additions and 41 deletions.
112 changes: 90 additions & 22 deletions src/soc/amd/sabrina/psp_verstage/svc.c
@@ -1,13 +1,12 @@
/* SPDX-License-Identifier: GPL-2.0-only */

/* TODO: Check if this is still correct */

#include "svc.h"

#include <assert.h>
#include <bl_uapp/bl_syscall_public.h>
#include <psp_verstage.h>
#include <stddef.h>
#include <string.h>

void svc_exit(uint32_t status)
{
Expand All @@ -18,120 +17,189 @@ void svc_exit(uint32_t status)
void svc_debug_print(const char *string)
{
uint32_t unused = 0;
SVC_CALL1(SVC_DEBUG_PRINT, (uint32_t)string, unused);
struct cmd_param_debug param = {
.debug_buffer = (char *)string,
.debug_buffer_len = strlen(string),
};
SVC_CALL2(SVC_VERSTAGE_CMD, CMD_DEBUG_PRINT, (void *)&param, unused);
}

void svc_debug_print_ex(uint32_t dword0,
uint32_t dword1, uint32_t dword2, uint32_t dword3)
{
uint32_t unused = 0;
SVC_CALL4(SVC_DEBUG_PRINT_EX, dword0, dword1, dword2, dword3, unused);
struct cmd_param_debug_ex param = {
.word0 = dword0,
.word1 = dword1,
.word2 = dword2,
.word3 = dword3,
};
SVC_CALL2(SVC_VERSTAGE_CMD, CMD_DEBUG_PRINT_EX, (void *)&param, unused);
}

uint32_t svc_get_boot_mode(uint32_t *boot_mode)
{
uint32_t retval = 0;
SVC_CALL1(SVC_GET_BOOT_MODE, boot_mode, retval);
struct cmd_param_get_boot_mode param = {
.ptr_boot_mode = boot_mode,
};
SVC_CALL2(SVC_VERSTAGE_CMD, CMD_GET_BOOT_MODE, (void *)&param, retval);
return retval;
}

void svc_delay_in_usec(uint32_t delay)
{
uint32_t unused = 0;
SVC_CALL1(SVC_DELAY_IN_MICRO_SECONDS, delay, unused);
struct cmd_param_delay_in_micro_second param = {
.delay = delay,
};
SVC_CALL2(SVC_VERSTAGE_CMD, CMD_DELAY_IN_MICRO_SECONDS, (void *)&param, unused);
}

uint32_t svc_get_spi_rom_info(struct spirom_info *spi_rom_info)
{
uint32_t retval = 0;
SVC_CALL1(SVC_GET_SPI_INFO, (uint32_t)spi_rom_info, retval);
struct cmd_param_spirom_info param = {
.ptr_spirom_info = spi_rom_info,
};
SVC_CALL2(SVC_VERSTAGE_CMD, CMD_GET_SPI_INFO, (void *)&param, retval);
return retval;
}

uint32_t svc_map_fch_dev(enum fch_io_device io_device,
uint32_t arg1, uint32_t arg2, void **io_device_axi_addr)
{
uint32_t retval = 0;
struct cmd_param_map_fch_io_device param = {
.io_device = io_device,
.arg1 = arg1,
.arg2 = arg2,
.pptr_io_device_addr_axi = io_device_axi_addr,
};
assert(io_device < FCH_IO_DEVICE_END);
SVC_CALL4(SVC_MAP_FCH_IO_DEVICE, io_device, arg1, arg2,
(uint32_t)io_device_axi_addr, retval);
SVC_CALL2(SVC_VERSTAGE_CMD, CMD_MAP_FCH_IO_DEVICE, (void *)&param, retval);
return retval;
}

uint32_t svc_unmap_fch_dev(enum fch_io_device io_device, void *io_device_axi_addr)
{
uint32_t retval = 0;
struct cmd_param_unmap_fch_io_device param = {
.io_device = io_device,
.ptr_io_device_addr_axi = io_device_axi_addr,
};
assert(io_device < FCH_IO_DEVICE_END);
SVC_CALL2(SVC_UNMAP_FCH_IO_DEVICE, (uint32_t)io_device,
(uint32_t)io_device_axi_addr, retval);
SVC_CALL2(SVC_VERSTAGE_CMD, CMD_UNMAP_FCH_IO_DEVICE, (void *)&param, retval);
return retval;
}

uint32_t svc_map_spi_rom(void *spi_rom_addr,
uint32_t size, void **spi_rom_axi_addr)
{
uint32_t retval = 0;
SVC_CALL3(SVC_MAP_SPIROM_DEVICE, spi_rom_addr, size,
(uint32_t)spi_rom_axi_addr, retval);
struct cmd_param_map_spirom param = {
.spirom_addr = (uintptr_t)spi_rom_addr,
.size = size,
.ppspirom_addr_axi = spi_rom_axi_addr,
};
SVC_CALL2(SVC_VERSTAGE_CMD, CMD_MAP_SPIROM_DEVICE, (void *)&param, retval);
return retval;
}

uint32_t svc_unmap_spi_rom(void *spi_rom_addr)
{
uint32_t retval = 0;
SVC_CALL1(SVC_UNMAP_SPIROM_DEVICE, (uint32_t)spi_rom_addr, retval);
struct cmd_param_unmap_spirom param = {
.ptr_spirom_addr_axi = spi_rom_addr,
};
SVC_CALL2(SVC_VERSTAGE_CMD, CMD_UNMAP_SPIROM_DEVICE, (void *)&param, retval);
return retval;
}

uint32_t svc_update_psp_bios_dir(uint32_t *psp_dir_offset,
uint32_t *bios_dir_offset)
{
uint32_t retval = 0;
SVC_CALL2(SVC_UPDATE_PSP_BIOS_DIR, (uint32_t)psp_dir_offset,
(uint32_t)bios_dir_offset, retval);
struct cmd_param_psp_update param = {
.ptr_psp_dir_addr = psp_dir_offset,
};
SVC_CALL2(SVC_VERSTAGE_CMD, CMD_UPDATE_PSP_BIOS_DIR, (void *)&param, retval);
return retval;
}

uint32_t svc_save_uapp_data(void *address, uint32_t size)
{
uint32_t retval = 0;
SVC_CALL2(SVC_COPY_DATA_FROM_UAPP, (uint32_t)address, size, retval);
struct cmd_param_copy_data_from_uapp param = {
.address = (uintptr_t)address,
.size = size,
};
SVC_CALL2(SVC_VERSTAGE_CMD, CMD_COPY_DATA_FROM_UAPP, (void *)&param, retval);
return retval;
}

uint32_t svc_read_timer_val(enum psp_timer_type type, uint64_t *counter_value)
{
unsigned int retval = 0;
struct cmd_param_read_timer_val param = {
.timer_type = type,
.ptr_counter_value = counter_value,
};
assert(type < PSP_TIMER_TYPE_MAX);
SVC_CALL2(SVC_READ_TIMER_VAL, type, counter_value, retval);
SVC_CALL2(SVC_VERSTAGE_CMD, CMD_READ_TIMER_VAL, (void *)&param, retval);
return retval;
}

uint32_t svc_reset_system(enum reset_type reset_type)
{
unsigned int retval = 0;
struct cmd_param_reset_system param = {
.reset_type = reset_type,
};
assert(reset_type < RESET_TYPE_MAX);
SVC_CALL1(SVC_RESET_SYSTEM, reset_type, retval);
SVC_CALL2(SVC_VERSTAGE_CMD, CMD_RESET_SYSTEM, (void *)&param, retval);
return retval;
}

uint32_t svc_crypto_sha(struct sha_generic_data *sha_op, enum sha_operation_mode sha_mode)
{
uint32_t retval = 0;
SVC_CALL2(SVC_SHA, sha_op, sha_mode, retval);
struct cmd_param_sha param = {
.ptr_sha_op = sha_op,
.sha_mode = sha_mode,
};
SVC_CALL2(SVC_VERSTAGE_CMD, CMD_SHA, (void *)&param, retval);
return retval;
}

uint32_t svc_modexp(struct mod_exp_params *mod_exp_param)
{
uint32_t retval = 0;
SVC_CALL1(SVC_MODEXP, mod_exp_param, retval);
struct cmd_param_modexp param = {
.ptr_modexp = mod_exp_param,
};
SVC_CALL2(SVC_VERSTAGE_CMD, CMD_MODEXP, (void *)&param, retval);
return retval;
}

uint32_t svc_ccp_dma(uint32_t spi_rom_offset, void *dest, uint32_t size)
{
uint32_t retval = 0;
SVC_CALL3(SVC_CCP_DMA, spi_rom_offset, dest, size, retval);
struct cmd_param_ccp_dma param = {
.spi_offset = spi_rom_offset,
.dst_addr = (uintptr_t)dest,
.size = size,
};
SVC_CALL2(SVC_VERSTAGE_CMD, CMD_CCP_DMA, (void *)&param, retval);
return retval;
}

uint32_t svc_set_platform_boot_mode(enum chrome_platform_boot_mode boot_mode)
{
uint32_t retval = 0;
struct cmd_param_set_platform_boot_mode param = {
.boot_mode = boot_mode,
};
SVC_CALL2(SVC_VERSTAGE_CMD, CMD_SET_PLATFORM_BOOT_MODE, (void *)&param, retval);
return retval;
}
86 changes: 86 additions & 0 deletions src/soc/amd/sabrina/psp_verstage/svc.h
Expand Up @@ -5,6 +5,9 @@
#ifndef PSP_VERSTAGE_SVC_H
#define PSP_VERSTAGE_SVC_H

#include <bl_uapp/bl_syscall_public.h>
#include <types.h>

#define SVC_CALL4(SVC_ID, R0, R1, R2, R3, Ret) \
__asm__ __volatile__ ( \
"mov r0, %[reg0]\n\t" \
Expand Down Expand Up @@ -56,4 +59,87 @@
: [id] "I" (SVC_ID) /* input(s) */ \
: "memory", "cc" /* list of clobbered registers */)

struct cmd_param_sha {
struct sha_generic_data *ptr_sha_op;
enum sha_operation_mode sha_mode;
};

struct cmd_param_debug {
char *debug_buffer;
uint32_t debug_buffer_len;
};

struct cmd_param_debug_ex {
uint32_t word0;
uint32_t word1;
uint32_t word2;
uint32_t word3;
};

struct cmd_param_modexp {
struct mod_exp_params *ptr_modexp;
};

struct cmd_param_psp_update {
unsigned int *ptr_psp_dir_addr;
};

struct cmd_param_spirom_info {
struct spirom_info *ptr_spirom_info;
};

struct cmd_param_map_spirom {
unsigned int spirom_addr;
unsigned int size;
void **ppspirom_addr_axi;
};

struct cmd_param_unmap_spirom {
void *ptr_spirom_addr_axi;
};

struct cmd_param_read_timer_val {
enum psp_timer_type timer_type;
uint64_t *ptr_counter_value;
};

struct cmd_param_delay_in_micro_second {
uint32_t delay;
};

struct cmd_param_reset_system {
enum reset_type reset_type;
};

struct cmd_param_get_boot_mode {
unsigned int *ptr_boot_mode;
};

struct cmd_param_copy_data_from_uapp {
unsigned int address;
unsigned int size;
};

struct cmd_param_map_fch_io_device {
enum fch_io_device io_device;
unsigned int arg1;
unsigned int arg2;
void **pptr_io_device_addr_axi;
};

struct cmd_param_unmap_fch_io_device {
enum fch_io_device io_device;
void *ptr_io_device_addr_axi;
};

struct cmd_param_ccp_dma {
uint32_t spi_offset;
uint32_t dst_addr;
uint32_t size;
};

struct cmd_param_set_platform_boot_mode {
uint32_t boot_mode;
};

#endif /* PSP_VERSTAGE_SVC_H */

0 comments on commit 0fa0a3e

Please sign in to comment.