/* SPDX-License-Identifier: GPL-2.0-only */ /* This file is part of the coreboot project. */ #include #include /* * SPI VSCC configuration W25Q64FW. */ #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; }