Problems with cfi_cmdset_0001
Nicolas Pitre
nico at cam.org
Sat Dec 2 10:23:33 EST 2000
On Sat, 2 Dec 2000, Shane Nay wrote:
> Okay, I've been reading the PDF for Strataflash, by Intel. And I've traced
> my problems with the write routines in MTD down to two problems, the Block
> address, and the word write problem. The command address isn't properly
> interpretted for this chip. I'm not sure what the CFI spec is, but I
> think:
> cmd_adr=adr & ~(wbufsize-1);
> is wrong. (Well, maybe it's different chip to chip, but I know it's wrong
> for this chip)
>
> It should compute the top of the block via the erasesize and size.
> cmd_adr=mtd->erasesize*((int)(adr/mtd->erasesize));
Please consider using the following for better efficiency instead:
cmd_adr = addr & ~(mtd->erasesize-1);
This produces the same result but omits the division which is best to avoid
on some CPUs which don't have a native instruction for it.
> Now, this fixes the Block address. The other problem though is
> significantly nastier.
>
> Okay, MTD seems to think that it can write twice as much data as it can to
> a device at a time in write_buffer mode, which is all together wrong. My
> configuration is two x8 chips interleaved on a 16 bit bus. Basically...,
> its thinking we have two x16 chips on a 32 bit bus before streaming, but
> then streams the data the right way, but twice as much as it said it would.
What kind of arrangement do the probe function find? Does it actually tell
you: "Found 2 x8 CFI devices at location 0 in 8 bit mode"? If not, you'll
have to look at the probe code in cfi-probe.c. Carefully reordering the
probe sequence might be required (I had to do it for the 32-bit buswidth
case).
> However, my code is so removed at this point from MTD base since I had too
> many other things at play with MTD code to properly trace my problem, and
> now I have a cleaner version of the code for XIP. So I'm not sure I'm
> going to roll all my changes into cfi_cmdset_0001.
My impression is that it had better advantages to be separate just to keep
things as simple as possible.
> Who is the maintainer
> of this file BTW? I'll try to make patches for him/her to fix these
> problems.
Well... I don't know who is the official maintainer, but I think I
contributed the largest mods recently.
Nicolas
To unsubscribe, send "unsubscribe mtd" to majordomo at infradead.org
More information about the linux-mtd
mailing list