public inbox for linux-mtd@lists.infradead.org
 help / color / mirror / Atom feed
* Why CFI_DEVICETYPE_X8 in cfi_send_gen_cmd()?
@ 2004-02-25  1:24 Shawn Jin
  2004-02-25 11:08 ` David Vrabel
  0 siblings, 1 reply; 4+ messages in thread
From: Shawn Jin @ 2004-02-25  1:24 UTC (permalink / raw)
  To: linuxmtd

Hi,

In cfi_cmdset_0002.c, there is a piece of comment stating that the
CFI_DEVICETYPE_X8 is needed even when cfi->device_type !=
CFI_DEVICETYPE_X8. Why is it the case?

In my case, two Am29PL320D chips are interleaved and each works in 32-bit
mode. So the buswidth is 64 bits. When CFI_DEVICETYPE_x8 is used in either
erase_oneblock() or write_oneword(), the command address generated is not
right. For example, to erase a block, the following commands are generated:
    Addr: 0xff002aaa  Data: 0x000000aa000000aa
    Addr: 0xff001554  Data: 0x0000005500000055
I found out that the cfi->addr_unlock1(2) are set to 0x1555 (0xaaa) because
of CFI_DEVICETYPE_X32 in cfi_cmdset_0002().

According to the datasheet of Am29PL320D
(http://www.amd.com/us-en/assets/content_type/white_papers_and_tech_docs/24075.pdf),
the correct addresses should be 0xff002aa8 (555 << 3) and 0xff001550 (2aa
<< 3).

So I replaced CFI_DEVICETYPE_X8 with cfi->device_type in both
do_erase_oneblock() and do_write_oneword(). I tested and found that erase
can succeed but write still fails.

Any ideas or explanations?

Thanks,
-Shawn.

__________________________________
Do you Yahoo!?
Yahoo! Mail SpamGuard - Read only the mail you want.
http://antispam.yahoo.com/tools

^ permalink raw reply	[flat|nested] 4+ messages in thread
[parent not found: <3236F92B82933347807DFF6A8BA632802133B9@wcosmb04.cos.agilent.com>]

end of thread, other threads:[~2004-02-27 10:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-02-25  1:24 Why CFI_DEVICETYPE_X8 in cfi_send_gen_cmd()? Shawn Jin
2004-02-25 11:08 ` David Vrabel
2004-02-25 12:31   ` David Woodhouse
     [not found] <3236F92B82933347807DFF6A8BA632802133B9@wcosmb04.cos.agilent.com>
2004-02-27 10:03 ` David Vrabel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox