aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/portwell/m107/w25q64.c
diff options
context:
space:
mode:
authorFrans Hendriks <fhendriks@eltan.com>2019-07-15 08:48:55 +0200
committerMartin Roth <martinroth@google.com>2019-07-17 14:21:52 +0000
commited52e3dd9c33e5f714bde615e16c1b187cdd269f (patch)
treea19282a87dd1789b319ea0ac3612963148bb2983 /src/mainboard/portwell/m107/w25q64.c
parent6feb4dadd85518c5e4603cb7da48ac4bec484c62 (diff)
mainboard/portwell/m107: Do initial mainboard commit
Initial support for Portwell PQ7-M107 (Q7) module. Code based on Intel Strago mainboard. BUG=N/A TEST=booting SeaBIOS and Linux 4.20 kernel on PQ7-M107 Change-Id: I7d3173fdcf881f894a75cd9798ba173b425d4e62 Signed-off-by: Frans Hendriks <fhendriks@eltan.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/29470 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/mainboard/portwell/m107/w25q64.c')
-rw-r--r--src/mainboard/portwell/m107/w25q64.c78
1 files changed, 78 insertions, 0 deletions
diff --git a/src/mainboard/portwell/m107/w25q64.c b/src/mainboard/portwell/m107/w25q64.c
new file mode 100644
index 0000000000..bc908f04b3
--- /dev/null
+++ b/src/mainboard/portwell/m107/w25q64.c
@@ -0,0 +1,78 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2014 Google Inc.
+ * Copyright (C) 2015 Intel Corp.
+ * Copyright (C) 2018 Eltan B.V.
+ *
+ * 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 <soc/spi.h>
+#include <string.h>
+#include <drivers/spi/spi_winbond.h>
+
+/*
+ * SPI lockdown configuration
+ */
+#define SPI_OPMENU_0 CMD_W25_WRSR /* Write Status Register */
+#define SPI_OPTYPE_0 SPI_OPTYPE_WR_NOADDR /* Write, no address */
+
+#define SPI_OPMENU_1 CMD_W25_PP /* BYPR: Byte Program */
+#define SPI_OPTYPE_1 SPI_OPTYPE_WR_ADDR /* Write, address required */
+
+#define SPI_OPMENU_2 CMD_W25_READ /* Read Data */
+#define SPI_OPTYPE_2 SPI_OPTYPE_RD_ADDR /* Read, address required */
+
+#define SPI_OPMENU_3 CMD_W25_RDSR /* Read Status Register */
+#define SPI_OPTYPE_3 SPI_OPTYPE_RD_NOADDR /* Read, no address */
+
+#define SPI_OPMENU_4 CMD_W25_SE /* Sector Erase */
+#define SPI_OPTYPE_4 SPI_OPTYPE_WR_ADDR /* Write, address required */
+
+#define SPI_OPMENU_5 CMD_W25_RDID /* Read ID */
+#define SPI_OPTYPE_5 SPI_OPTYPE_RD_NOADDR /* Read, no address */
+
+#define SPI_OPMENU_6 CMD_W25_BE /* BE: Block Erase */
+#define SPI_OPTYPE_6 SPI_OPTYPE_WR_ADDR /* Write, address required */
+
+#define SPI_OPMENU_7 CMD_W25_FAST_READ /* FAST: Fast Read */
+#define SPI_OPTYPE_7 SPI_OPTYPE_RD_ADDR /* Read, address required */
+
+#define SPI_OPPREFIX CMD_W25_WREN /* WREN only to be inline */
+ /* with flashrom */
+
+#define SPI_OPTYPE ((SPI_OPTYPE_7 << 14) | (SPI_OPTYPE_6 << 12) | \
+ (SPI_OPTYPE_5 << 10) | (SPI_OPTYPE_4 << 8) | \
+ (SPI_OPTYPE_3 << 6) | (SPI_OPTYPE_2 << 4) | \
+ (SPI_OPTYPE_1 << 2) | (SPI_OPTYPE_0 << 0))
+
+#define SPI_OPMENU_UPPER ((SPI_OPMENU_7 << 24) | (SPI_OPMENU_6 << 16) | \
+ (SPI_OPMENU_5 << 8) | (SPI_OPMENU_4 << 0))
+
+#define SPI_OPMENU_LOWER ((SPI_OPMENU_3 << 24) | (SPI_OPMENU_2 << 16) | \
+ (SPI_OPMENU_1 << 8) | (SPI_OPMENU_0 << 0))
+
+#define SPI_VSCC (WG_64_BYTE | EO(0x20) | BES_4_KB)
+
+static const struct spi_config spi_config = {
+ .preop = CMD_W25_WREN,
+ .optype = SPI_OPTYPE,
+ .opmenu = { SPI_OPMENU_LOWER, SPI_OPMENU_UPPER },
+ .lvscc = SPI_VSCC,
+ .uvscc = SPI_VSCC,
+};
+
+int mainboard_get_spi_config(struct spi_config *cfg)
+{
+ memcpy(cfg, &spi_config, sizeof(*cfg));
+
+ return 0;
+}