From: Marek Vasut <marek.vasut@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH] NAND: Let NAND_NO_SUBPAGE_WRITE through
Date: Sun, 6 Nov 2011 13:43:45 +0100 [thread overview]
Message-ID: <201111061343.45155.marek.vasut@gmail.com> (raw)
In-Reply-To: <4EB64CE2.4090702@denx.de>
> On 11/05/2011 03:24 AM, Marek Vasut wrote:
> > There is a problem reported that the NAND_NO_SUBPAGE_WRITE, set by some
> > drivers, is silently ignored by NAND core. This causes UBI to
> > malfunction on these drivers, because UBI tries to use subpage writes.
>
> Hi Marek,
>
> > This was discussed already with no conclusion, see thread:
> > Message-Id: <1302372335-30232-6-git-send-email-sbabic@denx.de>
>
> Right, there was some discussion also comparing what it is done on the
> Linux Kernel. There is a discrepancy for the usage of the
> NAND_NO_SUBPAGE_WRITE, because it belongs to the chip options, but in
> this case (and in the patch I submitted) it is used as "controller"
> option. Same case here.
Yes sure, but the controller driver sets it as a chip option as there's no
"controller" option field and I don't want to introduce new definition consuming
one bit in the top half of chip option.
>
> > The bug was recently retriggered by Veli-Pekka Peltola, causing him
> > trouble with UBI on the MX28 CPU:
> > Message-ID: <4EB3E4EA.9080509@bluegiga.com>
> >
> > drivers/mtd/nand/nand_base.c | 11 +++++++++++
> > 1 files changed, 11 insertions(+), 0 deletions(-)
> >
> > diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c
> > index 6aac6a2..7ecd5a3 100644
> > --- a/drivers/mtd/nand/nand_base.c
> > +++ b/drivers/mtd/nand/nand_base.c
> > @@ -2548,6 +2548,7 @@ static const struct nand_flash_dev
> > *nand_get_flash_type(struct mtd_info *mtd,
> >
> > {
> >
> > int ret, maf_idx;
> > int tmp_id, tmp_manf;
> >
> > + int no_subpage = 0;
> >
> > /* Select the device */
> > chip->select_chip(mtd, 0);
> >
> > @@ -2612,10 +2613,20 @@ static const struct nand_flash_dev
> > *nand_get_flash_type(struct mtd_info *mtd,
> >
> > if (!ret)
> >
> > nand_flash_detect_non_onfi(mtd, chip, type, &busw);
> >
> > + /*
> > + * If the controller is incapable of subpage writes, force no subpage
> > + * writes. This has to be done here, otherwise UBI will complain.
> > + */
> > + if (chip->options & NAND_NO_SUBPAGE_WRITE)
> > + no_subpage = 1;
> > +
>
> The patch does not convince me. This relies only if the SUBPAGE_WRITE is
> supported by the chip, and this is half problem. What happens if we have
> a SLC (that generally supports subpage mode) connected to a controller
> that does not support it ? NAND_NO_SUBPAGE_WRITE is not set, but the
> controller can't manage it.
> I think your patch fix only a particular case, and it is not general
> enough.
No, the controller must set NAND_NO_SUBPAGE_WRITE as a chip option in its driver
to force it so it should work for both cases.
Cheers
next prev parent reply other threads:[~2011-11-06 12:43 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-11-05 2:24 [U-Boot] [PATCH] NAND: Let NAND_NO_SUBPAGE_WRITE through Marek Vasut
2011-11-06 9:01 ` Stefano Babic
2011-11-06 12:43 ` Marek Vasut [this message]
2011-11-06 14:54 ` Stefano Babic
2011-11-06 15:16 ` Marek Vasut
2011-11-10 17:02 ` Marek Vasut
2011-11-10 17:10 ` Scott Wood
2011-11-10 17:44 ` Marek Vasut
2011-11-11 12:52 ` Veli-Pekka Peltola
2011-11-11 17:50 ` Marek Vasut
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=201111061343.45155.marek.vasut@gmail.com \
--to=marek.vasut@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox