[RFC/PATCH] NAND bus-width detection extreme makeover

Ezequiel Garcia ezequiel.garcia at free-electrons.com
Sat Nov 30 11:28:25 EST 2013


Hi Brian,

On Sat, Nov 30, 2013 at 12:35:37AM -0800, Brian Norris wrote:
> Hi Ezequiel,
> 
> On Fri, Nov 29, 2013 at 10:40:55AM -0300, Ezequiel Garcia wrote:
> > Here's my proposal, based in Pekon's latest work.
> > 
> > This patch removes the flash device bus-width configuration, prior to
> > the device detection. With this modification, a NAND driver is no longer
> > able to "force" the device width, and instead can only obtain the detected
> > bus-width after the call to nand_scan_ident().
> > 
> > Flash devices bus-width are specified either by reading an ONFI feature,
> > or through a flag in the in-kernel flash devices table. Therefore, it doesn't
> > make any sense to somehow "advise" the NAND core about this parameter.
> 
> Hmm, I think there are a few factors at play here. First of all, the
> hardware driver knows the best about the physical buswidth. It should
> know if there are 8 or 16 data lines connected to the device, so it
> could, for instance, know that it does not have enough data lines to
> support x16 buswidth. (You could possibly devise hardware that can
> support x16 but not x8, I suppose.) So this is one way in which the
> driver must "advise" the NAND core about the buswidth.
> 
> On the other hand, the hardware/driver doesn't know what buswidth the
> flash chip is. That's nand_base's job. So in that sense, we don't need
> to "advise" the NAND core.
> 
> But there are certainly cases where the driver should advise, and if
> there is a mismatch, bail.
> 

As Pekon just said, the driver can take this action, once the NAND core
has detected the NAND device width and bail out.

I really don't see why we need to *enforce* that in the NAND core.

> > In addition, the ONFI specification requires to issue the detection commands
> > using only the lower 8-bits of the data bus. The ONFI specification says:
> > 
> >   "" The Read ID and Read Parameter Page commands only use the lower 8-bits
> >      of the data bus. The host shall not issue commands that use a word
> >      data width on x16 devices until the host determines the device supports
> >      a 16-bit data bus width in the parameter page. ""
> 
> This does not really say that *all* NAND transactions must be performed
> on the lower 8 bits (a true x8 buswidth), but only that all ONFI
> transactions must be.
> 

Well, I *think* I never said that, and this patch doesn't imply that
either. All the patch is doing is using x8 buswidth until the width is
detected. Then it switches to whatever the width was detected to.

> > IIRC, the current way of setting the device width is to set NAND_BUSWIDTH_AUTO
> > in chip->options and then let the driver set some width-specific callbacks after
> > the NAND core has detected the width.
> > 
> > However, as noticed by Pekon Gupta, this means NAND_BUSWIDTH_AUTO should be
> > always turned on (and hence the option be removed).
> 
> No, I think you can solve the x16 ONFI detection problem without
> requiring NAND_BUSWIDTH_AUTO.

Uh? I'm not requiring NAND_BUSWIDTH_AUTO at all.

> And in fact, NAND_BUSWIDTH_AUTO only helps
> you wil part of the problem: performing ONFI transactions during the
> initial detection, where you pretend like you're an x8 device.
> 
> But what happens if a driver needs to use ONFI SET_FEATURES or
> GET_FEATURES after initial probe?
> 
> So I think the problem may need to be divided into 2 parts:
> 
>  1) How do we best handle ONFI transactions, so that they are always
>     performed on the lower 8 bits of the bus **regardless of actual
>     buswidth**? (I think Uwe's patch + my response in [1] might solve
>     this.)
> 
>  2) Can/should we relax the old restrictions where drivers have to
>     configure the buswidth correctly before running nand_scan_ident(),
>     in the spirit of NAND_BUSWIDTH_AUTO? And why do we need this
>     flexibility?
> 

Uh? Both (1) and (2) are already handled by this patch, regarding the
initial device detection.

[..]
> > Of course, the memory controller (such as GPMC in the OMAP case) still needs
> > proper width a-prior configuration, but that's completely unrelated to the
> > flash device bus width.
> 
> I would disagree.
> 

On which arguments?

To be honest with you, I'm a bit lost about your feedback :-)

I guess you *did* read the patch, right? It's pretty straight-forward
and it fixes a *current* bug: 16-bit devices *cannot* be ONFI
detected.

All the patch does is:

1. Set defaults to x8

2. Detect device. Either method works.

3. Set defaults to detected width, x8 or x16.

The NAND driver is free, after the detection, to error-out, print a
message, or re-arrange the callbacks.

Which part exactly of the above do you disagree with?

Now, maybe I went to far talking about removing this or that, but as far
as the ONFI detection, I think the change is pretty-straightforward.

(I'll reply to your suggestion in the proper mail)
-- 
Ezequiel García, Free Electrons
Embedded Linux, Kernel and Android Engineering
http://free-electrons.com



More information about the linux-mtd mailing list