From: Sourav Poddar <sourav.poddar-l0cyMroinI0@public.gmane.org>
To: <computersforpeace-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
<broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
<linux-mtd-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org>,
<linux-spi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>
Cc: <balbi-l0cyMroinI0@public.gmane.org>,
<linux-omap-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
<devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
<bcousson-rdvid1DuHRBWk0Htik3J/w@public.gmane.org>,
Sourav Poddar <sourav.poddar-l0cyMroinI0@public.gmane.org>
Subject: [PATCH 06/17] spi/qspi: Add support to switc to memory mapped operation.
Date: Tue, 26 Nov 2013 13:05:02 +0530 [thread overview]
Message-ID: <1385451313-1875-7-git-send-email-sourav.poddar@ti.com> (raw)
In-Reply-To: <1385451313-1875-1-git-send-email-sourav.poddar-l0cyMroinI0@public.gmane.org>
These add apis that can be used to switch to memory mapped operatons
by configuring control module and qspi registers.
Signed-off-by: Sourav Poddar <sourav.poddar-l0cyMroinI0@public.gmane.org>
---
drivers/spi/spi-ti-qspi.c | 28 ++++++++++++++++++++++++++++
1 files changed, 28 insertions(+), 0 deletions(-)
diff --git a/drivers/spi/spi-ti-qspi.c b/drivers/spi/spi-ti-qspi.c
index 39aefd7..40f1c35 100644
--- a/drivers/spi/spi-ti-qspi.c
+++ b/drivers/spi/spi-ti-qspi.c
@@ -113,6 +113,10 @@ struct ti_qspi {
#define QSPI_CSPOL(n) (1 << (1 + n * 8))
#define QSPI_CKPOL(n) (1 << (n * 8))
+#define MM_SWITCH (1 << 0)
+#define MEM_CS (1 << 8)
+#define MEM_CS_DIS (0 << 8)
+
#define QSPI_FRAME 4096
#define QSPI_AUTOSUSPEND_TIMEOUT 2000
@@ -129,6 +133,30 @@ static inline void ti_qspi_write(struct ti_qspi *qspi,
writel(val, qspi->base + reg);
}
+void enable_qspi_memory_mapped(struct ti_qspi *qspi)
+{
+ u32 val;
+
+ ti_qspi_write(qspi, MM_SWITCH, QSPI_SPI_SWITCH_REG);
+ if (qspi->ctrl_mod) {
+ val = readl(qspi->ctrl_base);
+ val |= MEM_CS;
+ writel(val, qspi->ctrl_base);
+ }
+}
+
+void disable_qspi_memory_mapped(struct ti_qspi *qspi)
+{
+ u32 val;
+
+ ti_qspi_write(qspi, ~MM_SWITCH, QSPI_SPI_SWITCH_REG);
+ if (qspi->ctrl_mod) {
+ val = readl(qspi->ctrl_base);
+ val &= MEM_CS_DIS;
+ writel(val, qspi->ctrl_base);
+ }
+}
+
static int ti_qspi_setup(struct spi_device *spi)
{
struct ti_qspi *qspi = spi_master_get_devdata(spi->master);
--
1.7.1
--
To unsubscribe from this list: send the line "unsubscribe linux-spi" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2013-11-26 7:35 UTC|newest]
Thread overview: 55+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-11-26 7:34 [PATCH 00/17] Add memory mapped support for ti qspi, m25p80 serial flash Sourav Poddar
2013-11-26 7:34 ` [PATCH 03/17] spi/qspi: parse register by name Sourav Poddar
2013-11-26 10:30 ` Mark Brown
[not found] ` <20131126103029.GY14725-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2013-11-26 11:17 ` Sourav Poddar
2013-11-26 12:24 ` Mark Brown
2013-11-28 4:45 ` Sourav Poddar
[not found] ` <5296CA5A.90304-l0cyMroinI0@public.gmane.org>
2013-11-28 10:54 ` Mark Brown
[not found] ` <20131128105423.GL14725-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2013-11-28 10:58 ` Sourav Poddar
[not found] ` <529721BF.4010902-l0cyMroinI0@public.gmane.org>
2013-11-28 11:11 ` Mark Brown
[not found] ` <20131128111152.GN14725-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2013-11-28 11:19 ` Sourav Poddar
2013-11-26 7:35 ` [PATCH 07/17] spi/qspi: configure set up register for memory map Sourav Poddar
[not found] ` <1385451313-1875-1-git-send-email-sourav.poddar-l0cyMroinI0@public.gmane.org>
2013-11-26 7:34 ` [PATCH 01/17] spi/spi.h: Add get_buf/put_buf support in spi master Sourav Poddar
[not found] ` <1385451313-1875-2-git-send-email-sourav.poddar-l0cyMroinI0@public.gmane.org>
2013-11-26 12:38 ` Mark Brown
2013-11-26 7:34 ` [PATCH 02/17] spi/spi.h: Add configure from slave support Sourav Poddar
[not found] ` <1385451313-1875-3-git-send-email-sourav.poddar-l0cyMroinI0@public.gmane.org>
2013-11-26 10:29 ` Mark Brown
[not found] ` <20131126102951.GX14725-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2013-11-26 11:21 ` Sourav Poddar
[not found] ` <52948451.3060706-l0cyMroinI0@public.gmane.org>
2013-11-26 12:21 ` Mark Brown
2013-11-28 4:47 ` Sourav Poddar
[not found] ` <5296CAEA.3030002-l0cyMroinI0@public.gmane.org>
2013-11-28 10:55 ` Mark Brown
2013-11-26 7:35 ` [PATCH 04/17] spi/qspi: parse control module register Sourav Poddar
2013-11-26 10:31 ` Mark Brown
[not found] ` <20131126103104.GZ14725-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2013-11-26 11:18 ` Sourav Poddar
[not found] ` <529483A2.3080000-l0cyMroinI0@public.gmane.org>
2013-11-26 12:25 ` Mark Brown
[not found] ` <20131126122512.GD14725-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2013-11-26 12:38 ` Sourav Poddar
2013-11-26 12:55 ` Mark Brown
2013-11-26 13:00 ` Sourav Poddar
2013-11-26 13:19 ` Mark Brown
[not found] ` <20131126131927.GN14725-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2013-11-26 13:20 ` Sourav Poddar
2013-11-26 7:35 ` [PATCH 05/17] spi/qspi: parse memory map register Sourav Poddar
2013-11-26 7:35 ` Sourav Poddar [this message]
2013-11-26 12:57 ` [PATCH 06/17] spi/qspi: Add support to switc to memory mapped operation Mark Brown
2013-11-28 4:39 ` Sourav Poddar
2013-11-26 7:35 ` [PATCH 08/17] spi/qspi: Add api for get_buf/put_buf Sourav Poddar
2013-11-26 7:35 ` [PATCH 09/17] spi/spi.h: Add "mem" variable in spi master Sourav Poddar
2013-11-26 13:01 ` Mark Brown
[not found] ` <20131126130119.GH14725-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2013-11-26 13:05 ` Sourav Poddar
[not found] ` <52949C9F.10008-l0cyMroinI0@public.gmane.org>
2013-11-26 13:20 ` Mark Brown
[not found] ` <20131126132051.GO14725-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2013-11-28 4:38 ` Sourav Poddar
2013-11-26 7:35 ` [PATCH 12/17] spi/qspi: convert driver to enable/disable memory mapped Sourav Poddar
2013-11-26 13:11 ` Mark Brown
2013-11-28 5:24 ` Sourav Poddar
2013-11-28 10:49 ` Mark Brown
[not found] ` <20131128104922.GK14725-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2013-11-28 11:08 ` Sourav Poddar
[not found] ` <5297242B.3040807-l0cyMroinI0@public.gmane.org>
2013-11-28 11:59 ` Mark Brown
2013-11-28 12:02 ` Sourav Poddar
2013-11-26 7:35 ` [PATCH 13/17] drivers: mtd: m25p80: Add api to configure master register Sourav Poddar
2013-11-26 7:35 ` [PATCH 14/17] drivers: mtd: m25p80: Adapt driver to support memory mapped read Sourav Poddar
2013-11-26 7:35 ` [PATCH 15/17] arm: dts: dra7: Add qspi device Sourav Poddar
2013-11-26 7:35 ` [PATCH 17/17] Documentation: bindings: ti-qspi: update binding information Sourav Poddar
2013-11-26 7:35 ` [PATCH 10/17] spi/spi.h: Add mmap flag in spi master Sourav Poddar
2013-11-26 7:35 ` [PATCH 11/17] spi/qspi: set "mmap" flag to true Sourav Poddar
[not found] ` <1385451313-1875-12-git-send-email-sourav.poddar-l0cyMroinI0@public.gmane.org>
2013-11-26 13:10 ` Mark Brown
[not found] ` <20131126131029.GI14725-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2013-11-26 13:11 ` Sourav Poddar
2013-11-26 7:35 ` [PATCH 16/17] arm: dts: am43x-epos: Add qspi device Sourav Poddar
2013-12-05 9:09 ` [PATCH 00/17] Add memory mapped support for ti qspi, m25p80 serial flash Sourav Poddar
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=1385451313-1875-7-git-send-email-sourav.poddar@ti.com \
--to=sourav.poddar-l0cymroini0@public.gmane.org \
--cc=balbi-l0cyMroinI0@public.gmane.org \
--cc=bcousson-rdvid1DuHRBWk0Htik3J/w@public.gmane.org \
--cc=broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
--cc=computersforpeace-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
--cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-mtd-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
--cc=linux-omap-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-spi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
/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;
as well as URLs for NNTP newsgroup(s).