public inbox for linux-mtd@lists.infradead.org
 help / color / mirror / Atom feed
From: Sascha Hauer <s.hauer@pengutronix.de>
To: Eric Benard <eric@eukrea.com>
Cc: linux-mtd@lists.infradead.org, dedekind1@gmail.com
Subject: Re: [PATCH 1/1] mxc_nand : add RESET command support
Date: Fri, 11 Dec 2009 13:40:35 +0100	[thread overview]
Message-ID: <20091211124035.GN15126@pengutronix.de> (raw)
In-Reply-To: <1260357163-5367-1-git-send-email-eric@eukrea.com>

On Wed, Dec 09, 2009 at 12:12:43PM +0100, Eric Benard wrote:
> mxc_nand driver must support the RESET Command in order to support
> Micron NAND which need a reset before any other command.
> 
> Signed-off-by: Eric Benard <eric@eukrea.com>

Acked-by: Sascha Hauer <s.hauer@pengutronix.de>

> ---
>  drivers/mtd/nand/mxc_nand.c |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
> 
> diff --git a/drivers/mtd/nand/mxc_nand.c b/drivers/mtd/nand/mxc_nand.c
> index d5445cd..0207525 100644
> --- a/drivers/mtd/nand/mxc_nand.c
> +++ b/drivers/mtd/nand/mxc_nand.c
> @@ -638,6 +638,7 @@ static void mxc_nand_command(struct mtd_info *mtd, unsigned command,
>  
>  	case NAND_CMD_ERASE1:
>  	case NAND_CMD_ERASE2:
> +	case NAND_CMD_RESET:
>  		send_cmd(host, command, false);
>  		mxc_do_addr_cycle(mtd, column, page_addr);
>  
> -- 
> 1.6.3.3
> 
> 
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

  reply	other threads:[~2009-12-11 12:40 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-10-21 14:13 [RFC] mxc nand controller updates Sascha Hauer
2009-10-21 14:13 ` [PATCH 01/19] Revert "mtd: mxc_nand: fix 2KiB pagesize NAND on i.MX27" Sascha Hauer
2009-10-21 14:13   ` [PATCH 02/19] mxc_nand: cleanup eccoob descriptions Sascha Hauer
2009-10-21 14:13     ` [PATCH 03/19] mxc_nand: cleanup initialization Sascha Hauer
2009-10-21 14:13       ` [PATCH 04/19] mxc_nand: merge send_read_page and send_prog_page Sascha Hauer
2009-10-21 14:13         ` [PATCH 05/19] mxc_nand: introduce mxc_do_addr_cycle Sascha Hauer
2009-10-21 14:13           ` [PATCH 06/19] mxc nand: remove debug param Sascha Hauer
2009-10-21 14:13             ` [PATCH 07/19] mxc nand: remove dead code Sascha Hauer
2009-10-21 14:13               ` [PATCH 08/19] mxc nand: use resource_size() Sascha Hauer
2009-10-21 14:13                 ` [PATCH 09/19] mxc nand: use buffers Sascha Hauer
2009-10-21 14:13                   ` [PATCH 10/19] mxc nand: simplify command processing Sascha Hauer
2009-10-21 14:13                     ` [PATCH 11/19] mxc nand: modify send_page to send all pages, not only one Sascha Hauer
2009-10-21 14:13                       ` [PATCH 12/19] mxc_nand: remove unused defines Sascha Hauer
2009-10-21 14:13                         ` [PATCH 13/19] mxc_nand: Make main/spare areas runtime configurable Sascha Hauer
2009-10-21 14:13                           ` [PATCH 14/19] mxc_nand: Get rid of pagesize_2k flag Sascha Hauer
2009-10-21 14:13                             ` [PATCH 15/19] mxc_nand: Add NFC V2 support Sascha Hauer
2009-10-21 14:13                               ` [PATCH 16/19] mxc_nand: disable sp_en bit only once Sascha Hauer
2009-10-21 14:13                                 ` [PATCH 17/19] mxc_nand: Allow flash based bbt Sascha Hauer
2009-10-21 14:13                                   ` [PATCH 18/19] mxc_nand: remove TROP_US_DELAY Sascha Hauer
2009-10-21 14:13                                     ` [PATCH 19/19] mxc_nand: use DRIVER_NAME where appropriate Sascha Hauer
2009-10-31 18:38 ` [RFC] mxc nand controller updates alfred steele
2009-10-31 20:11   ` Robert Schwebel
2009-10-31 23:08     ` alfred steele
2009-11-11  7:49 ` Artem Bityutskiy
2009-11-12  7:36   ` Sascha Hauer
2009-11-13  8:32     ` Artem Bityutskiy
2009-11-30 11:20       ` David Woodhouse
2009-11-30 11:41         ` Artem Bityutskiy
2009-11-30 12:29         ` Sascha Hauer
2009-12-05 10:43           ` Eric Bénard
2009-12-07 22:02             ` [PATCH] mxc_nand : add RESET command support Eric Bénard
2009-12-09  8:25               ` Artem Bityutskiy
2009-12-09 11:12                 ` [PATCH 1/1] " Eric Benard
2009-12-11 12:40                   ` Sascha Hauer [this message]
2010-01-22  8:12                   ` Sascha Hauer
2010-02-03 16:02                     ` Artem Bityutskiy
2010-01-21 20:46               ` [PATCH] " Eric Bénard
2009-12-08 12:07             ` [RFC] mxc nand controller updates Artem Bityutskiy

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=20091211124035.GN15126@pengutronix.de \
    --to=s.hauer@pengutronix.de \
    --cc=dedekind1@gmail.com \
    --cc=eric@eukrea.com \
    --cc=linux-mtd@lists.infradead.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