aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/protectli/vault_bsw/spi_vscc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/protectli/vault_bsw/spi_vscc.c')
-rw-r--r--src/mainboard/protectli/vault_bsw/spi_vscc.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/mainboard/protectli/vault_bsw/spi_vscc.c b/src/mainboard/protectli/vault_bsw/spi_vscc.c
new file mode 100644
index 0000000000..529a78eb22
--- /dev/null
+++ b/src/mainboard/protectli/vault_bsw/spi_vscc.c
@@ -0,0 +1,18 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+/* This file is part of the coreboot project. */
+
+#include <soc/spi.h>
+#include <string.h>
+
+#define SPI_VSCC (WG_64_BYTE | EO(0x20) | BES_4_KB)
+
+static const struct vscc_config spi_config = {
+ .lvscc = SPI_VSCC,
+ .uvscc = SPI_VSCC,
+};
+
+int mainboard_get_spi_vscc_config(struct vscc_config *cfg)
+{
+ memcpy(cfg, &spi_config, sizeof(*cfg));
+ return 0;
+}