summaryrefslogtreecommitdiffstats
path: root/src/mainboard/portwell/m107/w25q64.c
blob: 295b80ca59d1441ef9a22cb1dc53c4be5489b807 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* SPDX-License-Identifier: GPL-2.0-only */

#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;
}