blob: 90a6b4767765c3a933eb3c00fc24e32b758d5e1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
#include <amdblocks/spi.h>
#include <boardid.h>
#include <stdint.h>
void mainboard_spi_cfg_override(uint8_t *fast_speed, uint8_t *read_mode)
{
uint32_t board_ver = board_id();
if (board_ver >= CONFIG_OVERRIDE_EFS_SPI_SPEED_MIN_BOARD)
*fast_speed = CONFIG_OVERRIDE_EFS_SPI_SPEED;
/*
* Due to a hardware limitation, Dual I/O 1-2-2 Read mode is supported starting
* board version 3. This hardware limitation applies only to Skyrim reference
* design.
*/
if (CONFIG(BOARD_GOOGLE_SKYRIM) && board_ver >= 3)
*read_mode = SPI_READ_MODE_DUAL122;
}
|