aboutsummaryrefslogtreecommitdiff
path: root/src/soc/amd/common/block/spi
diff options
context:
space:
mode:
authorMartin Roth <martinroth@chromium.org>2021-08-09 13:47:48 -0600
committerFelix Held <felix-coreboot@felixheld.de>2021-08-30 18:34:48 +0000
commitb5b1c5a7da72a21e09f6476172c5ff0068b13f7d (patch)
treee135ce878b328951018909a389597e6876d6bd82 /src/soc/amd/common/block/spi
parentf363ad4acf7b749deb2c546890101d19bfb6d75d (diff)
soc/amd/common: Update SPI based on Kconfig & EFS instead of devtree
Get the settings for fast-read and mode from EFS, and reprogram those. Program Normal reads, Alt-mode, and TPM speeds from Kconfig settings. BUG=b:195943311 TEST=Boot and see that SPI was set to the correct speed & mode Signed-off-by: Martin Roth <martinroth@chromium.org> Change-Id: I8a24f637b2a0061f60a8f736121d224d4c4ba69b Reviewed-on: https://review.coreboot.org/c/coreboot/+/56959 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/soc/amd/common/block/spi')
-rw-r--r--src/soc/amd/common/block/spi/fch_spi.c57
1 files changed, 34 insertions, 23 deletions
diff --git a/src/soc/amd/common/block/spi/fch_spi.c b/src/soc/amd/common/block/spi/fch_spi.c
index 7ef98392e0..a8425149aa 100644
--- a/src/soc/amd/common/block/spi/fch_spi.c
+++ b/src/soc/amd/common/block/spi/fch_spi.c
@@ -2,6 +2,7 @@
#include <amdblocks/chip.h>
#include <amdblocks/lpc.h>
+#include <amdblocks/psp_efs.h>
#include <amdblocks/spi.h>
#include <arch/mmio.h>
#include <console/console.h>
@@ -9,7 +10,23 @@
#include <soc/lpc.h>
#include <stdint.h>
-static void fch_spi_set_spi100(int norm, int fast, int alt, int tpm)
+static uint8_t lower_speed(uint8_t speed1, uint8_t speed2)
+{
+ uint8_t speeds[] = {SPI_SPEED_800K, SPI_SPEED_16M, SPI_SPEED_22M,
+ SPI_SPEED_33M, SPI_SPEED_66M, SPI_SPEED_100M};
+
+ for (int i = 0; i < ARRAY_SIZE(speeds); i++) {
+ if (speed1 == speeds[i])
+ return speed1;
+ if (speed2 == speeds[i])
+ return speed2;
+ }
+
+ /* Fall back to 16MHz if we got invalid speed values */
+ return SPI_SPEED_16M;
+}
+
+static void fch_spi_set_spi100(uint8_t norm, uint8_t fast, uint8_t alt, uint8_t tpm)
{
spi_write16(SPI100_SPEED_CONFIG, SPI_SPEED_CFG(norm, fast, alt, tpm));
spi_write16(SPI100_ENABLE, SPI_USE_SPI100);
@@ -34,32 +51,26 @@ static void fch_spi_set_read_mode(u32 mode)
spi_write32(SPI_CNTRL0, val | SPI_READ_MODE(mode));
}
-static void fch_spi_config_mb_modes(void)
+static void fch_spi_config_modes(void)
{
- const struct soc_amd_common_config *cfg = soc_get_common_config();
-
- if (!cfg)
- die("Common config structure is NULL!\n");
+ uint8_t read_mode, fast_speed;
+ uint8_t normal_speed = CONFIG_NORMAL_READ_SPI_SPEED;
+ uint8_t alt_speed = CONFIG_ALT_SPI_SPEED;
+ uint8_t tpm_speed = CONFIG_TPM_SPI_SPEED;
- const struct spi_config *spi_cfg = &cfg->spi_config;
+ if (!read_efs_spi_settings(&read_mode, &fast_speed)) {
+ read_mode = CONFIG_EFS_SPI_READ_MODE;
+ fast_speed = CONFIG_EFS_SPI_SPEED;
+ }
- fch_spi_set_read_mode(spi_cfg->read_mode);
- fch_spi_set_spi100(spi_cfg->normal_speed, spi_cfg->fast_speed,
- spi_cfg->altio_speed, spi_cfg->tpm_speed);
-}
-
-static void fch_spi_config_em100_modes(void)
-{
- fch_spi_set_read_mode(SPI_READ_MODE_NORMAL33M);
- fch_spi_set_spi100(SPI_SPEED_16M, SPI_SPEED_16M, SPI_SPEED_16M, SPI_SPEED_16M);
-}
+ if (fast_speed != CONFIG_EFS_SPI_SPEED) {
+ normal_speed = lower_speed(normal_speed, fast_speed);
+ tpm_speed = lower_speed(tpm_speed, fast_speed);
+ alt_speed = lower_speed(alt_speed, fast_speed);
+ }
-static void fch_spi_config_modes(void)
-{
- if (CONFIG(EM100))
- fch_spi_config_em100_modes();
- else
- fch_spi_config_mb_modes();
+ fch_spi_set_read_mode((u32)read_mode);
+ fch_spi_set_spi100(normal_speed, fast_speed, alt_speed, tpm_speed);
}
void fch_spi_early_init(void)