From: Vikram Narayanan <vikram186@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH V5 RESEND 1/3] mtd/NAND: Add FSMC driver support
Date: Thu, 24 May 2012 22:04:35 +0530 [thread overview]
Message-ID: <4FBE631B.4040507@gmail.com> (raw)
In-Reply-To: <c00a9abb22ea9ec6bd61fdadcec3ea64b090571f.1337834805.git.amit.virdi@st.com>
On 5/24/2012 10:58 AM, Amit Virdi wrote:
> From: Vipin KUMAR<vipin.kumar@st.com>
>
> Flexible static memory controller is a peripheral provided by ST,
> which controls the access to NAND chips along with many other
> memory device chips eg NOR, SRAM.
>
> This patch adds the driver support for FSMC controller interfacing
> with NAND memory.
>
> Signed-off-by: Vipin Kumar<vipin.kumar@st.com>
> Signed-off-by: Amit Virdi<amit.virdi@st.com>
> ---
> drivers/mtd/nand/Makefile | 1 +
> drivers/mtd/nand/fsmc_nand.c | 487 +++++++++++++++++++++++++++++++++++++++++
> include/linux/mtd/fsmc_nand.h | 101 +++++++++
> 3 files changed, 589 insertions(+), 0 deletions(-)
> create mode 100644 drivers/mtd/nand/fsmc_nand.c
> create mode 100644 include/linux/mtd/fsmc_nand.h
>
> diff --git a/drivers/mtd/nand/Makefile b/drivers/mtd/nand/Makefile
> index 1d1b628..29dc20e 100644
> --- a/drivers/mtd/nand/Makefile
> +++ b/drivers/mtd/nand/Makefile
> @@ -49,6 +49,7 @@ COBJS-$(CONFIG_NAND_DAVINCI) += davinci_nand.o
> COBJS-$(CONFIG_NAND_FSL_ELBC) += fsl_elbc_nand.o
> COBJS-$(CONFIG_NAND_FSL_IFC) += fsl_ifc_nand.o
> COBJS-$(CONFIG_NAND_FSL_UPM) += fsl_upm.o
> +COBJS-$(CONFIG_NAND_FSMC) += fsmc_nand.o
> COBJS-$(CONFIG_NAND_JZ4740) += jz4740_nand.o
> COBJS-$(CONFIG_NAND_KB9202) += kb9202_nand.o
> COBJS-$(CONFIG_NAND_KIRKWOOD) += kirkwood_nand.o
> diff --git a/drivers/mtd/nand/fsmc_nand.c b/drivers/mtd/nand/fsmc_nand.c
> new file mode 100644
> index 0000000..292fa8c
> --- /dev/null
> +++ b/drivers/mtd/nand/fsmc_nand.c
> @@ -0,0 +1,487 @@
> +/*
> + * (C) Copyright 2010
> + * Vipin Kumar, ST Micoelectronics, vipin.kumar at st.com.
> + *
> + * (C) Copyright 2012
> + * Amit Virdi, ST Micoelectronics, amit.virdi at st.com.
Fix the typo please. In all the copyright headers.
~Vikram
next prev parent reply other threads:[~2012-05-24 16:34 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-05-24 5:28 [U-Boot] [PATCH V5 RESEND 0/3] mtd/NAND: Support for FSMC controller Amit Virdi
2012-05-24 5:28 ` [U-Boot] [PATCH V5 RESEND 1/3] mtd/NAND: Add FSMC driver support Amit Virdi
2012-05-24 16:34 ` Vikram Narayanan [this message]
2012-05-25 9:18 ` Amit Virdi
2012-05-24 5:28 ` [U-Boot] [PATCH V5 RESEND 2/3] SPEAr: Configure FSMC driver for NAND interface Amit Virdi
2012-05-24 5:28 ` [U-Boot] [PATCH V5 RESEND 3/3] mtd/NAND: Remove obsolete SPEAr specific NAND drivers Amit Virdi
2012-05-25 1:58 ` [U-Boot] [PATCH V5 RESEND 0/3] mtd/NAND: Support for FSMC controller stefan at roese.nl
2012-05-31 7:04 ` Stefan Roese
2012-05-31 19:27 ` Scott Wood
2012-06-01 4:24 ` Amit Virdi
2012-06-01 5:58 ` Stefan Roese
2012-06-01 5:58 ` Stefan Roese
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=4FBE631B.4040507@gmail.com \
--to=vikram186@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 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.