From: Sourav Poddar <sourav.poddar@ti.com>
To: Sourav Poddar <sourav.poddar@ti.com>, <artem.bityutskiy@linux.intel.com>
Cc: rnayak@ti.com, linux-kernel@vger.kernel.org, balbi@ti.com,
broonie@kernel.org, linux-mtd@lists.infradead.org,
tqnguyen@micron.com, grant.likely@linaro.org,
spi-devel-general@lists.sourceforge.net,
linux-omap@vger.kernel.org, dwmw2@infradead.org,
manonuevo@micron.com
Subject: Re: [PATCH 0/3] spi/mtd generic framework,ti qspi controller and spansion driver
Date: Mon, 1 Jul 2013 10:47:16 +0530 [thread overview]
Message-ID: <51D110DC.2050107@ti.com> (raw)
In-Reply-To: <1372232472-2641-1-git-send-email-sourav.poddar@ti.com>
+ Artem
On Wednesday 26 June 2013 01:11 PM, Sourav Poddar wrote:
> This patch series add support for the generic spi based flash
> framework(spinand_mtd), which can be used used by any spi based flash device to
> attach itself to mtd framework.
>
> The first patch of this series includes both the generic framework and the
> the micron device(spinand_lld) making use of the framework.
> I picked the first patch as a standalone patch. Can split the generic and
> the lld part based on community suggestions.
>
> The second patch is the ti qspi controller driver.
> The third patch is the spansion s25fl256s driver, making use of the the
> generic spinand_mtd frameowrk.
>
> Test info:
> Tested the generic framework(spinand_mtd.c) along with patch(2&3) on my dra7xx board
> for write/erase/read using nand utils.
>
> Compile tested(spinand_lld.c).
>
> Mona Anonuevo (1):
> drivers: mtd: spinand: Add generic spinand frameowrk and micron
> driver.
>
> Sourav Poddar (2):
> drivers: spi: Add qspi flash controller
> drivers: mtd: spinand: Add qspi spansion flash controller
>
> drivers/mtd/Kconfig | 2 +
> drivers/mtd/Makefile | 2 +
> drivers/mtd/spinand/Kconfig | 31 ++
> drivers/mtd/spinand/Makefile | 10 +
> drivers/mtd/spinand/spinand_lld.c | 776 +++++++++++++++++++++++++++++++++++
> drivers/mtd/spinand/spinand_mtd.c | 690 +++++++++++++++++++++++++++++++
> drivers/mtd/spinand/ti-qspi-flash.c | 373 +++++++++++++++++
> drivers/spi/Kconfig | 6 +
> drivers/spi/Makefile | 1 +
> drivers/spi/ti-qspi.c | 352 ++++++++++++++++
> include/linux/mtd/spinand.h | 155 +++++++
> 11 files changed, 2398 insertions(+), 0 deletions(-)
> create mode 100644 drivers/mtd/spinand/Kconfig
> create mode 100644 drivers/mtd/spinand/Makefile
> create mode 100644 drivers/mtd/spinand/spinand_lld.c
> create mode 100644 drivers/mtd/spinand/spinand_mtd.c
> create mode 100644 drivers/mtd/spinand/ti-qspi-flash.c
> create mode 100644 drivers/spi/ti-qspi.c
> create mode 100644 include/linux/mtd/spinand.h
>
WARNING: multiple messages have this Message-ID (diff)
From: Sourav Poddar <sourav.poddar@ti.com>
To: Sourav Poddar <sourav.poddar@ti.com>, artem.bityutskiy@linux.intel.com
Cc: rnayak@ti.com, linux-kernel@vger.kernel.org, balbi@ti.com,
broonie@kernel.org, linux-mtd@lists.infradead.org,
tqnguyen@micron.com, grant.likely@linaro.org,
spi-devel-general@lists.sourceforge.net,
linux-omap@vger.kernel.org, dwmw2@infradead.org,
manonuevo@micron.com
Subject: Re: [PATCH 0/3] spi/mtd generic framework,ti qspi controller and spansion driver
Date: Mon, 1 Jul 2013 10:47:16 +0530 [thread overview]
Message-ID: <51D110DC.2050107@ti.com> (raw)
In-Reply-To: <1372232472-2641-1-git-send-email-sourav.poddar@ti.com>
+ Artem
On Wednesday 26 June 2013 01:11 PM, Sourav Poddar wrote:
> This patch series add support for the generic spi based flash
> framework(spinand_mtd), which can be used used by any spi based flash device to
> attach itself to mtd framework.
>
> The first patch of this series includes both the generic framework and the
> the micron device(spinand_lld) making use of the framework.
> I picked the first patch as a standalone patch. Can split the generic and
> the lld part based on community suggestions.
>
> The second patch is the ti qspi controller driver.
> The third patch is the spansion s25fl256s driver, making use of the the
> generic spinand_mtd frameowrk.
>
> Test info:
> Tested the generic framework(spinand_mtd.c) along with patch(2&3) on my dra7xx board
> for write/erase/read using nand utils.
>
> Compile tested(spinand_lld.c).
>
> Mona Anonuevo (1):
> drivers: mtd: spinand: Add generic spinand frameowrk and micron
> driver.
>
> Sourav Poddar (2):
> drivers: spi: Add qspi flash controller
> drivers: mtd: spinand: Add qspi spansion flash controller
>
> drivers/mtd/Kconfig | 2 +
> drivers/mtd/Makefile | 2 +
> drivers/mtd/spinand/Kconfig | 31 ++
> drivers/mtd/spinand/Makefile | 10 +
> drivers/mtd/spinand/spinand_lld.c | 776 +++++++++++++++++++++++++++++++++++
> drivers/mtd/spinand/spinand_mtd.c | 690 +++++++++++++++++++++++++++++++
> drivers/mtd/spinand/ti-qspi-flash.c | 373 +++++++++++++++++
> drivers/spi/Kconfig | 6 +
> drivers/spi/Makefile | 1 +
> drivers/spi/ti-qspi.c | 352 ++++++++++++++++
> include/linux/mtd/spinand.h | 155 +++++++
> 11 files changed, 2398 insertions(+), 0 deletions(-)
> create mode 100644 drivers/mtd/spinand/Kconfig
> create mode 100644 drivers/mtd/spinand/Makefile
> create mode 100644 drivers/mtd/spinand/spinand_lld.c
> create mode 100644 drivers/mtd/spinand/spinand_mtd.c
> create mode 100644 drivers/mtd/spinand/ti-qspi-flash.c
> create mode 100644 drivers/spi/ti-qspi.c
> create mode 100644 include/linux/mtd/spinand.h
>
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
WARNING: multiple messages have this Message-ID (diff)
From: Sourav Poddar <sourav.poddar@ti.com>
To: Sourav Poddar <sourav.poddar@ti.com>, <artem.bityutskiy@linux.intel.com>
Cc: rnayak@ti.com, linux-kernel@vger.kernel.org, balbi@ti.com,
broonie@kernel.org, linux-mtd@lists.infradead.org,
tqnguyen@micron.com, grant.likely@linaro.org,
spi-devel-general@lists.sourceforge.net,
linux-omap@vger.kernel.org, dwmw2@infradead.org,
manonuevo@micron.com
Subject: Re: [PATCH 0/3] spi/mtd generic framework,ti qspi controller and spansion driver
Date: Mon, 1 Jul 2013 10:47:16 +0530 [thread overview]
Message-ID: <51D110DC.2050107@ti.com> (raw)
In-Reply-To: <1372232472-2641-1-git-send-email-sourav.poddar@ti.com>
+ Artem
On Wednesday 26 June 2013 01:11 PM, Sourav Poddar wrote:
> This patch series add support for the generic spi based flash
> framework(spinand_mtd), which can be used used by any spi based flash device to
> attach itself to mtd framework.
>
> The first patch of this series includes both the generic framework and the
> the micron device(spinand_lld) making use of the framework.
> I picked the first patch as a standalone patch. Can split the generic and
> the lld part based on community suggestions.
>
> The second patch is the ti qspi controller driver.
> The third patch is the spansion s25fl256s driver, making use of the the
> generic spinand_mtd frameowrk.
>
> Test info:
> Tested the generic framework(spinand_mtd.c) along with patch(2&3) on my dra7xx board
> for write/erase/read using nand utils.
>
> Compile tested(spinand_lld.c).
>
> Mona Anonuevo (1):
> drivers: mtd: spinand: Add generic spinand frameowrk and micron
> driver.
>
> Sourav Poddar (2):
> drivers: spi: Add qspi flash controller
> drivers: mtd: spinand: Add qspi spansion flash controller
>
> drivers/mtd/Kconfig | 2 +
> drivers/mtd/Makefile | 2 +
> drivers/mtd/spinand/Kconfig | 31 ++
> drivers/mtd/spinand/Makefile | 10 +
> drivers/mtd/spinand/spinand_lld.c | 776 +++++++++++++++++++++++++++++++++++
> drivers/mtd/spinand/spinand_mtd.c | 690 +++++++++++++++++++++++++++++++
> drivers/mtd/spinand/ti-qspi-flash.c | 373 +++++++++++++++++
> drivers/spi/Kconfig | 6 +
> drivers/spi/Makefile | 1 +
> drivers/spi/ti-qspi.c | 352 ++++++++++++++++
> include/linux/mtd/spinand.h | 155 +++++++
> 11 files changed, 2398 insertions(+), 0 deletions(-)
> create mode 100644 drivers/mtd/spinand/Kconfig
> create mode 100644 drivers/mtd/spinand/Makefile
> create mode 100644 drivers/mtd/spinand/spinand_lld.c
> create mode 100644 drivers/mtd/spinand/spinand_mtd.c
> create mode 100644 drivers/mtd/spinand/ti-qspi-flash.c
> create mode 100644 drivers/spi/ti-qspi.c
> create mode 100644 include/linux/mtd/spinand.h
>
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
WARNING: multiple messages have this Message-ID (diff)
From: Sourav Poddar <sourav.poddar@ti.com>
To: Sourav Poddar <sourav.poddar@ti.com>, <artem.bityutskiy@linux.intel.com>
Cc: <linux-mtd@lists.infradead.org>,
<spi-devel-general@lists.sourceforge.net>, <broonie@kernel.org>,
<dwmw2@infradead.org>, <manonuevo@micron.com>,
<tqnguyen@micron.com>, <grant.likely@linaro.org>, <balbi@ti.com>,
<rnayak@ti.com>, <linux-kernel@vger.kernel.org>,
<linux-omap@vger.kernel.org>
Subject: Re: [PATCH 0/3] spi/mtd generic framework,ti qspi controller and spansion driver
Date: Mon, 1 Jul 2013 10:47:16 +0530 [thread overview]
Message-ID: <51D110DC.2050107@ti.com> (raw)
In-Reply-To: <1372232472-2641-1-git-send-email-sourav.poddar@ti.com>
+ Artem
On Wednesday 26 June 2013 01:11 PM, Sourav Poddar wrote:
> This patch series add support for the generic spi based flash
> framework(spinand_mtd), which can be used used by any spi based flash device to
> attach itself to mtd framework.
>
> The first patch of this series includes both the generic framework and the
> the micron device(spinand_lld) making use of the framework.
> I picked the first patch as a standalone patch. Can split the generic and
> the lld part based on community suggestions.
>
> The second patch is the ti qspi controller driver.
> The third patch is the spansion s25fl256s driver, making use of the the
> generic spinand_mtd frameowrk.
>
> Test info:
> Tested the generic framework(spinand_mtd.c) along with patch(2&3) on my dra7xx board
> for write/erase/read using nand utils.
>
> Compile tested(spinand_lld.c).
>
> Mona Anonuevo (1):
> drivers: mtd: spinand: Add generic spinand frameowrk and micron
> driver.
>
> Sourav Poddar (2):
> drivers: spi: Add qspi flash controller
> drivers: mtd: spinand: Add qspi spansion flash controller
>
> drivers/mtd/Kconfig | 2 +
> drivers/mtd/Makefile | 2 +
> drivers/mtd/spinand/Kconfig | 31 ++
> drivers/mtd/spinand/Makefile | 10 +
> drivers/mtd/spinand/spinand_lld.c | 776 +++++++++++++++++++++++++++++++++++
> drivers/mtd/spinand/spinand_mtd.c | 690 +++++++++++++++++++++++++++++++
> drivers/mtd/spinand/ti-qspi-flash.c | 373 +++++++++++++++++
> drivers/spi/Kconfig | 6 +
> drivers/spi/Makefile | 1 +
> drivers/spi/ti-qspi.c | 352 ++++++++++++++++
> include/linux/mtd/spinand.h | 155 +++++++
> 11 files changed, 2398 insertions(+), 0 deletions(-)
> create mode 100644 drivers/mtd/spinand/Kconfig
> create mode 100644 drivers/mtd/spinand/Makefile
> create mode 100644 drivers/mtd/spinand/spinand_lld.c
> create mode 100644 drivers/mtd/spinand/spinand_mtd.c
> create mode 100644 drivers/mtd/spinand/ti-qspi-flash.c
> create mode 100644 drivers/spi/ti-qspi.c
> create mode 100644 include/linux/mtd/spinand.h
>
next prev parent reply other threads:[~2013-07-01 5:18 UTC|newest]
Thread overview: 46+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-06-26 7:41 [PATCH 0/3] spi/mtd generic framework, ti qspi controller and spansion driver Sourav Poddar
2013-06-26 7:41 ` [PATCH 0/3] spi/mtd generic framework,ti " Sourav Poddar
2013-06-26 7:41 ` [PATCH 0/3] spi/mtd generic framework, ti " Sourav Poddar
2013-06-26 7:41 ` Sourav Poddar
2013-06-26 7:41 ` [PATCH 1/3] drivers: mtd: spinand: Add generic spinand frameowrk and micron driver Sourav Poddar
2013-06-26 7:41 ` Sourav Poddar
2013-06-26 7:41 ` Sourav Poddar
2013-06-26 7:41 ` Sourav Poddar
2013-06-26 14:15 ` Florian Fainelli
2013-06-26 14:15 ` Florian Fainelli
2013-06-26 15:22 ` Kamlakant Patel
2013-06-26 15:22 ` Kamlakant Patel
2013-06-26 15:22 ` Kamlakant Patel
2013-06-27 4:51 ` Sourav Poddar
2013-06-27 4:51 ` Sourav Poddar
2013-06-27 4:51 ` Sourav Poddar
2013-07-01 5:17 ` Sourav Poddar
2013-07-01 5:17 ` Sourav Poddar
2013-07-01 5:17 ` Sourav Poddar
2013-07-01 5:17 ` Sourav Poddar
2013-06-26 7:41 ` [PATCH 2/3] drivers: spi: Add qspi flash controller Sourav Poddar
2013-06-26 7:41 ` Sourav Poddar
2013-06-26 7:41 ` Sourav Poddar
2013-06-26 7:41 ` Sourav Poddar
2013-07-01 5:19 ` Sourav Poddar
2013-07-01 5:19 ` Sourav Poddar
2013-07-01 5:19 ` Sourav Poddar
2013-07-01 5:19 ` Sourav Poddar
2013-07-01 10:56 ` Mark Brown
2013-07-01 10:56 ` Mark Brown
2013-07-01 10:56 ` Mark Brown
2013-07-01 11:15 ` Sourav Poddar
2013-07-01 11:15 ` Sourav Poddar
2013-07-01 11:15 ` Sourav Poddar
2013-06-26 7:41 ` [PATCH 3/3] drivers: mtd: spinand: Add qspi spansion " Sourav Poddar
2013-06-26 7:41 ` Sourav Poddar
2013-06-26 7:41 ` Sourav Poddar
2013-06-26 7:41 ` Sourav Poddar
2013-07-01 5:18 ` Sourav Poddar
2013-07-01 5:18 ` Sourav Poddar
2013-07-01 5:18 ` Sourav Poddar
2013-07-01 5:18 ` Sourav Poddar
2013-07-01 5:17 ` Sourav Poddar [this message]
2013-07-01 5:17 ` [PATCH 0/3] spi/mtd generic framework,ti qspi controller and spansion driver Sourav Poddar
2013-07-01 5:17 ` Sourav Poddar
2013-07-01 5:17 ` 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=51D110DC.2050107@ti.com \
--to=sourav.poddar@ti.com \
--cc=artem.bityutskiy@linux.intel.com \
--cc=balbi@ti.com \
--cc=broonie@kernel.org \
--cc=dwmw2@infradead.org \
--cc=grant.likely@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mtd@lists.infradead.org \
--cc=linux-omap@vger.kernel.org \
--cc=manonuevo@micron.com \
--cc=rnayak@ti.com \
--cc=spi-devel-general@lists.sourceforge.net \
--cc=tqnguyen@micron.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.