[coreboot-gerrit] Change in coreboot[master]: amd/stoneyridge: Add SPI controller driver

Marshall Dawson (Code Review) gerrit at coreboot.org
Fri Nov 10 01:31:23 CET 2017


Marshall Dawson has uploaded this change for review. ( https://review.coreboot.org/22408


Change subject: amd/stoneyridge: Add SPI controller driver
......................................................................

amd/stoneyridge: Add SPI controller driver

Add more definitions for the controller registers and fields.  Add
source that is adapted from hudson and updated for Stoney Ridge.

This was tested with follow-on patches that write S3 data to flash.

BUG=b:68992021

Change-Id: I61d64cfdb4fce11c068113680da7ba6a199d6893
Signed-off-by: Marshall Dawson <marshalldawson3rd at gmail.com>
---
M src/soc/amd/stoneyridge/Makefile.inc
M src/soc/amd/stoneyridge/include/soc/southbridge.h
A src/soc/amd/stoneyridge/spi.c
3 files changed, 192 insertions(+), 1 deletion(-)



  git pull ssh://review.coreboot.org:29418/coreboot refs/changes/08/22408/1

diff --git a/src/soc/amd/stoneyridge/Makefile.inc b/src/soc/amd/stoneyridge/Makefile.inc
index 921691f..a4cdcf5 100644
--- a/src/soc/amd/stoneyridge/Makefile.inc
+++ b/src/soc/amd/stoneyridge/Makefile.inc
@@ -90,12 +90,14 @@
 ramstage-$(CONFIG_STONEYRIDGE_UART) += uart.c
 ramstage-y += usb.c
 ramstage-y += tsc_freq.c
+ramstage-$(CONFIG_SPI_FLASH) += spi.c
 
 smm-y += smihandler.c
 smm-y += smi_util.c
 smm-y += sb_util.c
 smm-y += tsc_freq.c
 smm-$(CONFIG_DEBUG_SMI) += uart.c
+smm-$(CONFIG_SPI_FLASH) += spi.c
 
 CPPFLAGS_common += -I$(src)/soc/amd/stoneyridge
 CPPFLAGS_common += -I$(src)/soc/amd/stoneyridge/include
diff --git a/src/soc/amd/stoneyridge/include/soc/southbridge.h b/src/soc/amd/stoneyridge/include/soc/southbridge.h
index f088be5..cc85fdb 100644
--- a/src/soc/amd/stoneyridge/include/soc/southbridge.h
+++ b/src/soc/amd/stoneyridge/include/soc/southbridge.h
@@ -181,7 +181,11 @@
 #define LPC_HOST_CONTROL		0xbb
 #define   SPI_FROM_HOST_PREFETCH_EN	BIT(0)
 
+/* SPI Controller */
+#define SPI_FIFO_DEPTH			8
+
 #define SPI_CNTRL0			0x00
+#define   SPI_BUSY			BIT(31)
 #define   SPI_READ_MODE_MASK		(BIT(30) | BIT(29) | BIT(18))
 /* Nominal is 16.7MHz on older devices, 33MHz on newer */
 #define   SPI_READ_MODE_NOM		0x00000000
@@ -191,14 +195,34 @@
 #define   SPI_READ_MODE_QUAD144		(BIT(30) |           BIT(18))
 #define   SPI_READ_MODE_NORMAL66	(BIT(30) | BIT(29)          )
 #define   SPI_READ_MODE_FAST		(BIT(30) | BIT(29) | BIT(18))
+#define   SPI_FIFO_PTR_CLR		BIT(20)
 #define   SPI_ARB_ENABLE		BIT(19)
-
+#define   EXEC_OPCODE			BIT(16)
+#define SPI_REG_CNTRL01			0x01
+#define SPI_REG_CNTRL02			0x02
+#define   SPI_FIFO_PTR_CLR02		(SPI_FIFO_PTR_CLR >> 16)
 #define SPI_CNTRL1			0x0c
+#define  SPI_FIFO_PTR_MASK		(BIT(8) | BIT(9) | BIT(10))
+#define SPI_CNTRL11			0x0d
+#define  SPI_FIFO_PTR_MASK11		(SPI_FIFO_PTR_MASK >> 8)
+
+#define SPI100_SPEED_CONFIG		0x22
 /* Use SPI_SPEED_16M-SPI_SPEED_66M below for the southbridge */
 #define   SPI_CNTRL1_SPEED_MASK		(BIT(15) | BIT(14) | BIT(13) | BIT(12))
 #define   SPI_NORM_SPEED_SH		12
 #define   SPI_FAST_SPEED_SH		8
 
+#define SPI_EXT_INDEX			0x1e
+#define SPI_EXT_DATA			0x1f
+#define   SPI_DDR_CMD			0x0
+#define   SPI_QDR_CMD			0x1
+#define   SPI_DPR_CMD			0x2
+#define   SPI_QPR_CMD			0x3
+#define   SPI_MODE_BYTE			0x4
+#define   SPI_TX_BYTE_COUNT		0x5
+#define   SPI_RX_BYTE_COUNT		0x6
+#define   SPI_SPI_DATA_FIFO_PTR		0x7
+
 #define SPI100_ENABLE			0x20
 #define   SPI_USE_SPI100		BIT(0)
 
diff --git a/src/soc/amd/stoneyridge/spi.c b/src/soc/amd/stoneyridge/spi.c
new file mode 100644
index 0000000..49fa00d
--- /dev/null
+++ b/src/soc/amd/stoneyridge/spi.c
@@ -0,0 +1,165 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2012 Advanced Micro Devices, Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ */
+
+#include <stdint.h>
+#include <stdlib.h>
+#include <string.h>
+#include <arch/io.h>
+#include <console/console.h>
+#include <spi_flash.h>
+#include <spi-generic.h>
+#include <device/device.h>
+#include <device/pci.h>
+#include <device/pci_ops.h>
+#include <soc/southbridge.h>
+#include <soc/pci_devs.h>
+#include <soc/imc.h>
+
+static uintptr_t spibar;
+
+static inline uint8_t spi_read8(uint8_t reg)
+{
+	return read8((void *)(spibar + reg));
+}
+
+static inline uint32_t spi_read32(uint8_t reg)
+{
+	return read32((void *)(spibar + reg));
+}
+
+static inline void spi_write8(uint8_t reg, uint8_t val)
+{
+	write8((void *)(spibar + reg), val);
+}
+
+static inline void spi_write32(uint8_t reg, uint32_t val)
+{
+	write32((void *)(spibar + reg), val);
+}
+
+static void reset_internal_fifo_pointer(void)
+{
+	uint8_t reg;
+	do {
+		reg = spi_read8(SPI_REG_CNTRL02);
+		reg |= SPI_FIFO_PTR_CLR02;
+		spi_write8(SPI_REG_CNTRL02, reg);
+	/* wait for ptr=0 without reading the tx/rx port in CPI_CNTRL1[7:0] */
+	} while (spi_read8(SPI_CNTRL11) & (SPI_FIFO_PTR_MASK11));
+}
+
+static void execute_command(void)
+{
+	uint32_t reg;
+
+	reg = spi_read32(SPI_CNTRL0);
+	reg |= EXEC_OPCODE;
+	spi_write32(SPI_CNTRL0, reg);
+
+	while ((spi_read32(SPI_CNTRL0) & (EXEC_OPCODE | SPI_BUSY)))
+		;
+}
+
+void spi_init(void)
+{
+	spibar = pci_read_config32(SOC_LPC_DEV, SPIROM_BASE_ADDRESS_REGISTER);
+	spibar = ALIGN_DOWN(spibar, 64);
+}
+
+static int spi_ctrlr_xfer(const struct spi_slave *slave, const void *dout,
+		size_t bytesout, void *din, size_t bytesin)
+{
+	/* First byte is cmd which can not being sent through FIFO. */
+	u8 cmd = *(u8 *)dout++;
+	u8 readoffby1;
+	size_t count;
+
+	bytesout--;
+
+	/*
+	 * Check if this is a write command attempting to transfer more bytes
+	 * than the controller can handle.  Iterations for writes are not
+	 * supported here because each SPI write command needs to be preceded
+	 * and followed by other SPI commands, and this sequence is controlled
+	 * by the SPI chip driver.
+	 */
+	if (bytesout > SPI_FIFO_DEPTH) {
+		printk(BIOS_DEBUG, "FCH SPI: Too much to write. Does your SPI"
+				" chip driver use spi_crop_chunk()?\n");
+		return -1;
+	}
+
+	readoffby1 = bytesout ? 0 : 1;
+
+	spi_write8(SPI_EXT_INDEX, SPI_TX_BYTE_COUNT);
+	spi_write8(SPI_EXT_DATA, bytesout); /* SpiExtRegIndx [5] - TxByteCnt */
+	spi_write8(SPI_EXT_INDEX, SPI_RX_BYTE_COUNT);
+	spi_write8(SPI_EXT_DATA, bytesin);  /* SpiExtRegIndx [6] - RxByteCnt */
+	spi_write8(SPI_CNTRL0, cmd);
+
+	reset_internal_fifo_pointer();
+	for (count = 0; count < bytesout; count++, dout++) {
+		spi_write8(SPI_CNTRL1, *(uint8_t *)dout);
+	}
+
+	reset_internal_fifo_pointer();
+	execute_command();
+
+	reset_internal_fifo_pointer();
+	/* Skip the bytes we sent. */
+	for (count = 0; count < bytesout; count++) {
+		cmd = spi_read8(SPI_CNTRL1);
+	}
+
+	for (count = 0; count < bytesin; count++, din++)
+		*(uint8_t *)din = spi_read8(SPI_CNTRL1);
+
+	return 0;
+}
+
+int chipset_volatile_group_begin(const struct spi_flash *flash)
+{
+	if (!IS_ENABLED(CONFIG_STONEYRIDGE_IMC_FWM))
+		return 0;
+
+	imc_sleep();
+	return 0;
+}
+
+int chipset_volatile_group_end(const struct spi_flash *flash)
+{
+	if (!IS_ENABLED(CONFIG_STONEYRIDGE_IMC_FWM))
+		return 0;
+
+	imc_wakeup();
+	return 0;
+}
+
+static const struct spi_ctrlr spi_ctrlr = {
+	.xfer = spi_ctrlr_xfer,
+	.xfer_vector = spi_xfer_two_vectors,
+	.max_xfer_size = SPI_FIFO_DEPTH,
+	.deduct_cmd_len = true,
+};
+
+const struct spi_ctrlr_buses spi_ctrlr_bus_map[] = {
+	{
+		.ctrlr = &spi_ctrlr,
+		.bus_start = 0,
+		.bus_end = 0,
+	},
+};
+
+const size_t spi_ctrlr_bus_map_count = ARRAY_SIZE(spi_ctrlr_bus_map);

-- 
To view, visit https://review.coreboot.org/22408
To unsubscribe, visit https://review.coreboot.org/settings

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I61d64cfdb4fce11c068113680da7ba6a199d6893
Gerrit-Change-Number: 22408
Gerrit-PatchSet: 1
Gerrit-Owner: Marshall Dawson <marshalldawson3rd at gmail.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.coreboot.org/pipermail/coreboot-gerrit/attachments/20171110/c52645fc/attachment-0001.html>


More information about the coreboot-gerrit mailing list