LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
To: <boris.brezillon@bootlin.com>, <richard@nod.at>,
<wmw2@infradead.org>, <computersforpeace@gmail.com>,
<marek.vasut@gmail.com>, <f.fainelli@gmail.com>,
<mmayer@broadcom.com>, <rogerq@ti.com>, <ladis@linux-mips.org>,
<ada@thorsis.com>, <honghui.zhang@mediatek.com>,
<miquel.raynal@bootlin.com>
Cc: <linux-mtd@lists.infradead.org>, <linux-kernel@vger.kernel.org>,
<nagasureshkumarrelli@gmail.com>,
Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
Subject: [LINUX PATCH v9 0/4] Add arm pl353 smc memory and nand driver for xilinx zynq soc
Date: Wed, 6 Jun 2018 13:19:38 +0530 [thread overview]
Message-ID: <1528271382-21690-1-git-send-email-naga.sureshkumar.relli@xilinx.com> (raw)
The following patches add arm pl353 static memory controller driver and nand driver
for xilinx zynq soc. The arm pl353 smc supports two interfaces i.e nand and nor/sram
memory interfaces. The current implementation supports only a single SMC
instance and nand specific configuration.
xilinx zynq TRM link:
http://www.xilinx.com/support/documentation/user_guides/ug585-Zynq-7000-TRM.pdf
ARM pl353 smc TRM link:
http://infocenter.arm.com/help/topic/com.arm.doc.ddi0380g/DDI0380G_smc_pl350_series_r2p1_trm.pdf
Tested Micron MT29F2G08ABAEAWP (On-die capable) and AMD/Spansion S34ML01G1.
This latest series make use of ->exec_op() . Referenced the marvel driver
as pointed by Miquel.
Naga Sureshkumar Relli (4):
Devicetree: Add pl353 smc controller devicetree binding information
memory: pl353: Add driver for arm pl353 static memory controller
Documentation: nand: pl353: Add documentation for controller and
driver
mtd: rawnand: pl353: Add basic driver for arm pl353 smc nand interface
.../bindings/memory-controllers/pl353-smc.txt | 53 +
Documentation/mtd/nand/pl353-nand.txt | 99 ++
drivers/memory/Kconfig | 8 +
drivers/memory/Makefile | 1 +
drivers/memory/pl353-smc.c | 523 +++++++++
drivers/mtd/nand/raw/Kconfig | 7 +
drivers/mtd/nand/raw/Makefile | 3 +
drivers/mtd/nand/raw/pl353_nand.c | 1236 ++++++++++++++++++++
include/linux/platform_data/pl353-smc.h | 29 +
9 files changed, 1959 insertions(+)
create mode 100644 Documentation/devicetree/bindings/memory-controllers/pl353-smc.txt
create mode 100644 Documentation/mtd/nand/pl353-nand.txt
create mode 100644 drivers/memory/pl353-smc.c
create mode 100644 drivers/mtd/nand/raw/pl353_nand.c
create mode 100644 include/linux/platform_data/pl353-smc.h
--
2.7.4
next reply other threads:[~2018-06-06 7:51 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-06 7:49 Naga Sureshkumar Relli [this message]
2018-06-06 7:49 ` [LINUX PATCH v9 1/4] Devicetree: Add pl353 smc controller devicetree binding information Naga Sureshkumar Relli
2018-06-07 15:42 ` Miquel Raynal
2018-06-07 15:47 ` Miquel Raynal
2018-06-08 5:20 ` Naga Sureshkumar Relli
2018-06-08 5:51 ` Boris Brezillon
2018-06-08 8:01 ` Naga Sureshkumar Relli
2018-06-08 7:23 ` Miquel Raynal
2018-06-06 7:49 ` [LINUX PATCH v9 2/4] memory: pl353: Add driver for arm pl353 static memory controller Naga Sureshkumar Relli
2018-06-07 16:07 ` Miquel Raynal
2018-06-19 10:54 ` Naga Sureshkumar Relli
2018-06-06 7:49 ` [LINUX PATCH v9 3/4] Documentation: nand: pl353: Add documentation for controller and driver Naga Sureshkumar Relli
2018-06-06 7:49 ` [LINUX PATCH v9 4/4] mtd: rawnand: pl353: Add basic driver for arm pl353 smc nand interface Naga Sureshkumar Relli
2018-06-07 19:59 ` Miquel Raynal
2018-06-08 12:23 ` Naga Sureshkumar Relli
2018-06-08 12:35 ` Miquel Raynal
2018-06-08 13:08 ` Naga Sureshkumar Relli
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=1528271382-21690-1-git-send-email-naga.sureshkumar.relli@xilinx.com \
--to=naga.sureshkumar.relli@xilinx.com \
--cc=ada@thorsis.com \
--cc=boris.brezillon@bootlin.com \
--cc=computersforpeace@gmail.com \
--cc=f.fainelli@gmail.com \
--cc=honghui.zhang@mediatek.com \
--cc=ladis@linux-mips.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mtd@lists.infradead.org \
--cc=marek.vasut@gmail.com \
--cc=miquel.raynal@bootlin.com \
--cc=mmayer@broadcom.com \
--cc=nagasureshkumarrelli@gmail.com \
--cc=richard@nod.at \
--cc=rogerq@ti.com \
--cc=wmw2@infradead.org \
--subject='Re: [LINUX PATCH v9 0/4] Add arm pl353 smc memory and nand driver for xilinx zynq soc' \
/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
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).