summaryrefslogtreecommitdiffstats
path: root/src/mainboard/facebook/fbg1701/w25q64.c
blob: ea18f1e4df87b4f256ee7d87f830fa0a9ded6278 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#include <soc/spi.h>
#include <string.h>
#include <drivers/spi/spi_winbond.h>

/*
 * SPI VSCC configuration
 */
#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;
}