From: Sean Anderson <seanga2@gmail.com>
To: u-boot@lists.denx.de
Subject: [RFC PATCH 08/13] spi: dw: Define XIP registers
Date: Thu, 4 Feb 2021 23:39:18 -0500 [thread overview]
Message-ID: <20210205043924.149504-9-seanga2@gmail.com> (raw)
In-Reply-To: <20210205043924.149504-1-seanga2@gmail.com>
These registers and fields are necessary for XIP with
SSIC_CONCURRENT_XIP_EN.
Signed-off-by: Sean Anderson <seanga2@gmail.com>
---
drivers/spi/designware_spi.c | 44 +++++++++++++++++++++++++++++++-----
1 file changed, 38 insertions(+), 6 deletions(-)
diff --git a/drivers/spi/designware_spi.c b/drivers/spi/designware_spi.c
index 44fb679fdb..d7510646e7 100644
--- a/drivers/spi/designware_spi.c
+++ b/drivers/spi/designware_spi.c
@@ -58,6 +58,13 @@
#define DW_SPI_DR 0x60
#define DW_SPI_RX_SAMPLE_DLY 0xf0
#define DW_SPI_SPI_CTRL0 0xf4
+#define DW_SPI_XIP_MODE_BITS 0xfc
+#define DW_SPI_XIP_INCR_INST 0x100
+#define DW_SPI_XIP_WRAP_INST 0x104
+#define DW_SPI_XIP_CTRL 0x108
+#define DW_SPI_XIP_SER 0x10c
+#define DW_SPI_XRXOICR 0x110
+#define DW_SPI_XIP_XNT_TIME_OUT 0x114
/* Bit fields in CTRLR0 */
/*
@@ -147,9 +154,9 @@
* FRF_BYTE
*/
#define SPI_CTRLR0_TRANS_TYPE_MASK GENMASK(1, 0)
-#define SPI_CTRLR0_TRANS_TYPE_1_1_X 0x0
-#define SPI_CTRLR0_TRANS_TYPE_1_X_X 0x1
-#define SPI_CTRLR0_TRANS_TYPE_X_X_X 0x2
+#define TRANS_TYPE_1_1_X 0x0
+#define TRANS_TYPE_1_X_X 0x1
+#define TRANS_TYPE_X_X_X 0x2
/* Address length in 4-bit units */
#define SPI_CTRLR0_ADDR_L_MASK GENMASK(5, 2)
/* Enable mode bits after address in XIP mode */
@@ -165,6 +172,31 @@
/* Stretch the clock if the FIFO over/underflows */
#define SPI_CTRLR0_CLK_STRETCH_EN BIT(30)
+/* Bit fields in XIP_CTRL */
+
+/* XIP SPI frame format */
+#define XIP_CTRL_FRF GENMASK(1, 0)
+/* Same as SPI_CTRLR0_TRANS_TYPE */
+#define XIP_CTRL_TRANS_TYPE_MASK GENMASK(3, 2)
+/* Address length in 4-bit increments */
+#define XIP_CTRL_ADDR_L_MASK GENMASK(7, 4)
+/* Same as SPI_CTRLR0_INST_L */
+#define XIP_CTRL_INST_L_MASK GENMASK(10, 9)
+/* Enable mode bits */
+#define XIP_CTRL_MD_BITS_EN BIT(12)
+/* Wait cycles */
+#define XIP_CTRL_WAIT_CYCLES_MASK GENMASK(17, 13)
+/* Use fixed-size DFS in XIP mode, ignoring AHB request width */
+#define XIP_CTRL_DFS_HC BIT(18)
+/* Enable instruction phase */
+#define XIP_CTRL_INST_EN BIT(22)
+/* Continuous transfer: don't deselect slave after one transfer */
+#define XIP_CTRL_CONT_XFER_EN BIT(23)
+/* Mode bits length; length = 1 << (MBL + 1) */
+#define XIP_CTRL_XIP_MBL_MASK GENMASK(27, 26)
+/* Prefetch contiguous data frames */
+#define XIP_CTRL_PREFETCH_EN BIT(29)
+
#define RX_TIMEOUT 1000 /* timeout in ms */
struct dw_spi_plat {
@@ -243,11 +275,11 @@ static u32 dw_spi_update_spi_cr0(const struct spi_mem_op *op)
/* This assumes support_op has filtered invalid types */
if (op->addr.buswidth == 1)
- trans_type = SPI_CTRLR0_TRANS_TYPE_1_1_X;
+ trans_type = TRANS_TYPE_1_1_X;
else if (op->cmd.buswidth == 1)
- trans_type = SPI_CTRLR0_TRANS_TYPE_1_X_X;
+ trans_type = TRANS_TYPE_1_X_X;
else
- trans_type = SPI_CTRLR0_TRANS_TYPE_X_X_X;
+ trans_type = TRANS_TYPE_X_X_X;
if (op->dummy.buswidth)
wait_cycles = op->dummy.nbytes * 8 / op->dummy.buswidth;
--
2.29.2
next prev parent reply other threads:[~2021-02-05 4:39 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-02-05 4:39 [RFC PATCH 00/13] spi: dw: Add support for XIP mode Sean Anderson
2021-02-05 4:39 ` [RFC PATCH 01/13] linux err: Synchronize with Linux 5.10 Sean Anderson
2021-02-07 14:37 ` Simon Glass
2021-02-05 4:39 ` [RFC PATCH 02/13] spi-mem: Add dirmap API from Linux Sean Anderson
2021-02-05 4:39 ` [RFC PATCH 03/13] mtd: spi-nor: use spi-mem dirmap API Sean Anderson
2021-02-05 4:39 ` [RFC PATCH 04/13] core: ofnode: Fix inconsistent returns of *_read_u32_array Sean Anderson
2021-02-07 14:37 ` Simon Glass
2021-02-05 4:39 ` [RFC PATCH 05/13] mux: Inline mux functions when CONFIG_MUX is disabled Sean Anderson
2021-02-05 7:32 ` Pratyush Yadav
2021-02-05 4:39 ` [RFC PATCH 06/13] mux: Define a stub for mux_get_by_index if " Sean Anderson
2021-02-05 10:53 ` Pratyush Yadav
2021-02-05 4:39 ` [RFC PATCH 07/13] mux: mmio: Only complain about idle-states if it is malformed Sean Anderson
2021-02-05 11:06 ` Pratyush Yadav
2021-02-05 13:28 ` Sean Anderson
2021-02-05 4:39 ` Sean Anderson [this message]
2021-02-05 4:39 ` [RFC PATCH 09/13] spi: dw: Add XIP and XIP_CONCURRENT caps Sean Anderson
2021-02-05 4:39 ` [RFC PATCH 10/13] spi: dw: Use a mux to access registers Sean Anderson
2021-02-05 4:39 ` [RFC PATCH 11/13] spi: dw: Add support for DIRMAP Sean Anderson
2021-02-05 4:39 ` [RFC PATCH 12/13] riscv: k210: Increase SPI3 bus clock to CPU speed Sean Anderson
2021-02-05 4:39 ` [RFC PATCH 13/13] riscv: k210: Add bindings for SPI XIP Sean Anderson
2021-02-05 4:43 ` [RFC PATCH 00/13] spi: dw: Add support for XIP mode Sean Anderson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210205043924.149504-9-seanga2@gmail.com \
--to=seanga2@gmail.com \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox