From: Boris Brezillon <boris.brezillon@bootlin.com>
To: Jagdish Gediya <jagdish.gediya@nxp.com>
Cc: linux-mtd@lists.infradead.org,
boris.brezillon@free-electrons.com, computersforpeace@gmail.com,
oss@buserror.net, leoyang.li@nxp.com, stable@vger.kernel.org
Subject: Re: [PATCH][v2] mtd: rawnand: fsl_ifc: Fix nand waitfunc return value
Date: Tue, 20 Mar 2018 09:20:37 +0100 [thread overview]
Message-ID: <20180320092037.54dd0eff@bbrezillon> (raw)
In-Reply-To: <1521564229-8018-1-git-send-email-jagdish.gediya@nxp.com>
On Tue, 20 Mar 2018 22:13:38 +0530
Jagdish Gediya <jagdish.gediya@nxp.com> wrote:
> As per the IFC hardware manual, Most significant 2 bytes in
> nand_fsr register are the outcome of NAND READ STATUS command.
>
> So status value need to be shifted and aligned as per the nand
> framework requirement.
>
> Fixes: 82771882d960 ("NAND Machine support for Integrated Flash Controller")
> Cc: stable@vger.kernel.org # v3.18+
> Signed-off-by: Jagdish Gediya <jagdish.gediya@nxp.com>
> Reviewed-by: Prabhakar Kushwaha <prabhakar.kushwaha@nxp.com>
> ---
> Changes for v2: Incorporated comments from Boris Brezillon
> - Added fixes tag
>
> drivers/mtd/nand/fsl_ifc_nand.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/mtd/nand/fsl_ifc_nand.c b/drivers/mtd/nand/fsl_ifc_nand.c
> index 9390cbd..0aa03ba 100644
> --- a/drivers/mtd/nand/fsl_ifc_nand.c
> +++ b/drivers/mtd/nand/fsl_ifc_nand.c
> @@ -643,12 +643,13 @@ static int fsl_ifc_wait(struct mtd_info *mtd, struct nand_chip *chip)
> fsl_ifc_run_command(mtd);
>
> nand_fsr = ifc_in32(&ifc->ifc_nand.nand_fsr);
> -
> + nand_fsr >>= 16;
> + nand_fsr = (nand_fsr >> 8) | (nand_fsr << 8);
Why are you swapping the upper and lower bytes? If the NAND status is
stored in the upper byte of the fsr reg (bits 24 to 31), then shift the
value by 24 directly. Note that (nand_fsr << 8) is useless here since
you're masking nand_fsr with 0xff before returning it.
> /*
> * The chip always seems to report that it is
> * write-protected, even when it is not.
> */
> - return nand_fsr | NAND_STATUS_WP;
> + return (nand_fsr & 0xff) | NAND_STATUS_WP;
> }
>
> /*
--
Boris Brezillon, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com
next prev parent reply other threads:[~2018-03-20 8:20 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-03-20 16:43 [PATCH][v2] mtd: rawnand: fsl_ifc: Fix nand waitfunc return value Jagdish Gediya
2018-03-20 8:20 ` Boris Brezillon [this message]
2018-03-20 10:16 ` Jagdish Gediya
2018-03-20 10:26 ` Boris Brezillon
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=20180320092037.54dd0eff@bbrezillon \
--to=boris.brezillon@bootlin.com \
--cc=boris.brezillon@free-electrons.com \
--cc=computersforpeace@gmail.com \
--cc=jagdish.gediya@nxp.com \
--cc=leoyang.li@nxp.com \
--cc=linux-mtd@lists.infradead.org \
--cc=oss@buserror.net \
--cc=stable@vger.kernel.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