From: Boris Brezillon <boris.brezillon@free-electrons.com>
To: David Woodhouse <dwmw2@infradead.org>,
Brian Norris <computersforpeace@gmail.com>,
linux-mtd@lists.infradead.org,
Boris Brezillon <boris.brezillon@free-electrons.com>,
Richard Weinberger <richard@nod.at>
Cc: Maxime Ripard <maxime.ripard@free-electrons.com>,
Chen-Yu Tsai <wens@csie.org>,
linux-sunxi@googlegroups.com
Subject: Re: [PATCH] mtd: nand: sunxi: Fix OOB bytes retrieval in read_chunks_dma()
Date: Mon, 20 Jun 2016 13:52:46 +0200 [thread overview]
Message-ID: <20160620135246.55b1abd0@bbrezillon> (raw)
In-Reply-To: <1465982532-30174-1-git-send-email-boris.brezillon@free-electrons.com>
On Wed, 15 Jun 2016 11:22:12 +0200
Boris Brezillon <boris.brezillon@free-electrons.com> wrote:
> The column address passed to the RNDOUT operation was missing the page
> size offset.
>
Applied.
> Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
> Fixes: 614049a8d904 ("mtd: nand: sunxi: add support for DMA assisted operations")
> ---
> drivers/mtd/nand/sunxi_nand.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/mtd/nand/sunxi_nand.c b/drivers/mtd/nand/sunxi_nand.c
> index ea74827..bcdd015 100644
> --- a/drivers/mtd/nand/sunxi_nand.c
> +++ b/drivers/mtd/nand/sunxi_nand.c
> @@ -1094,7 +1094,8 @@ static int sunxi_nfc_hw_ecc_read_chunks_dma(struct mtd_info *mtd, uint8_t *buf,
>
> if (oob_required && !erased) {
> /* TODO: use DMA to retrieve OOB */
> - nand->cmdfunc(mtd, NAND_CMD_RNDOUT, oob_off, -1);
> + nand->cmdfunc(mtd, NAND_CMD_RNDOUT,
> + mtd->writesize + oob_off, -1);
> nand->read_buf(mtd, oob, ecc->bytes + 4);
>
> sunxi_nfc_hw_ecc_get_prot_oob_bytes(mtd, oob, i,
> @@ -1129,7 +1130,8 @@ static int sunxi_nfc_hw_ecc_read_chunks_dma(struct mtd_info *mtd, uint8_t *buf,
> }
>
> /* TODO: use DMA to retrieve OOB */
> - nand->cmdfunc(mtd, NAND_CMD_RNDOUT, oob_off, -1);
> + nand->cmdfunc(mtd, NAND_CMD_RNDOUT,
> + mtd->writesize + oob_off, -1);
> nand->read_buf(mtd, oob, ecc->bytes + 4);
>
> ret = nand_check_erased_ecc_chunk(data, ecc->size,
prev parent reply other threads:[~2016-06-20 11:53 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-06-15 9:22 [PATCH] mtd: nand: sunxi: Fix OOB bytes retrieval in read_chunks_dma() Boris Brezillon
2016-06-20 11:52 ` Boris Brezillon [this message]
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=20160620135246.55b1abd0@bbrezillon \
--to=boris.brezillon@free-electrons.com \
--cc=computersforpeace@gmail.com \
--cc=dwmw2@infradead.org \
--cc=linux-mtd@lists.infradead.org \
--cc=linux-sunxi@googlegroups.com \
--cc=maxime.ripard@free-electrons.com \
--cc=richard@nod.at \
--cc=wens@csie.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