diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2024-11-06 22:06:17 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2024-11-06 22:06:17 +0000 |
commit | ac2153fa3867c51627f932e6ebc1684009830e0f (patch) | |
tree | 7579d1c6b09a63a3b527d59afe976624d9d7bd1a /usr.sbin/vmd/vmd.h | |
parent | 4fb7289361467a5745494a5c5bba4bd7c85a4508 (diff) |
vmd(8) logs psp(4) firmware version.
On vmd startup, log the AMD SEV PSP API and build number.
from hshoexer@; OK mlarkin@
Diffstat (limited to 'usr.sbin/vmd/vmd.h')
-rw-r--r-- | usr.sbin/vmd/vmd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/vmd/vmd.h b/usr.sbin/vmd/vmd.h index fee378b5d49..613d846edf0 100644 --- a/usr.sbin/vmd/vmd.h +++ b/usr.sbin/vmd/vmd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vmd.h,v 1.129 2024/11/05 23:16:46 bluhm Exp $ */ +/* $OpenBSD: vmd.h,v 1.130 2024/11/06 22:06:16 bluhm Exp $ */ /* * Copyright (c) 2015 Mike Larkin <mlarkin@openbsd.org> @@ -586,7 +586,7 @@ __dead void vionet_main(int, int); __dead void vioblk_main(int, int); /* psp.c */ -int psp_get_pstate(uint16_t *); +int psp_get_pstate(uint16_t *, uint8_t *, uint8_t *, uint8_t *, uint8_t *); int psp_df_flush(void); int psp_get_gstate(uint32_t, uint32_t *, uint32_t *, uint8_t *); int psp_launch_start(uint32_t *); |