public inbox for linux-mtd@lists.infradead.org
 help / color / mirror / Atom feed
* Re: mtd devices & jffs
@ 2000-07-11 21:23 Juan Gonzo
  2000-07-12  8:19 ` David Woodhouse
  0 siblings, 1 reply; 11+ messages in thread
From: Juan Gonzo @ 2000-07-11 21:23 UTC (permalink / raw)
  To: MTD Mailing List

I guess the problem I am going to run into is that I don't
want to erase all of the flash, nor do I want JFFS to use
all of the flash.  Part of the flash will have a kernel
image burned into, and another part is being used for config
data etc.  And then the filesystem is supposed to have its
chunk of flash to use.

Is this possible?  Looking through the JFFS code, they hardcode
the start address for their scan at 0x0 and get the end addr
based on the size of the total flash.  Is there a way to tell
JFFS "start at this addr and only use this much space" without
changing this code?

Thanks,
   -- kelly


--- David Woodhouse <dwmw2@infradead.org> wrote:
> 
> kayemmess@yahoo.ca said:
> > Dirty flash memory or bad inode: hexdump(pos = 0x1098176, len =
> 128):
> 
> Looks like there were data on the flash chips before you started.
> Erase 
> them first. There's no utility to erase whole devices, but the
> 'erase' 
> program in the util/ directory will erase a single erase block at a
> time.
> 
>  for a in `seq 0 131072 16777216` ; do mtd/util/erase /dev/mtd0 $a ;
> done
> 
> ....or put a loop into the erase program. The MTDGETINFO ioctl should
> return 
> the size of the device.
> 
> 
> --
> dwmw2
> 
> 
> 
> 
> To unsubscribe, send "unsubscribe mtd" to majordomo@infradead.org


_______________________________________________________
Do You Yahoo!?
Get your free @yahoo.ca address at http://mail.yahoo.ca


To unsubscribe, send "unsubscribe mtd" to majordomo@infradead.org

^ permalink raw reply	[flat|nested] 11+ messages in thread
* mtd devices & jffs
@ 2000-07-10 22:19 Juan Gonzo
  2000-07-11  6:37 ` Rogelio M. Serrano Jr.
                   ` (2 more replies)
  0 siblings, 3 replies; 11+ messages in thread
From: Juan Gonzo @ 2000-07-10 22:19 UTC (permalink / raw)
  To: MTD Mailing List

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=us-ascii, Size: 3020 bytes --]

Compiled the MTD code into a Linux 2.2.14 kernel and
loaded it onto our system (ARM processor and Intel Strataflash).

The system boots up.  Here is the MTD related messages:

=======================================

NORA: Found a coupled pair of CFI devices at location 0 in 16 bit mode
Primary Vendor Command Set: 0001 (Intel/Sharp Extended)
Primary Algorithm Table at 0031
Alternative Vendor Command Set: 0000 (None)
No Alternate Algorithm Table
Vcc Minimum: 2.7 V
Vcc Maximum: 3.6 V
No Vpp line
Typical byte/word write timeout: 128 µs
Maximum byte/word write timeout: 2048 µs
Typical full buffer write timeout: 128 µs
Maximum full buffer write timeout: 2048 µs
Typical block erase timeout: 1024 µs
Maximum block erase timeout: 16384 µs
Chip erase not supported
Device size: 0x1000000 bytes (16 Mb)
Flash Device Interface description: 0x0002
  - supports x8 and x16 via BYTE# with asynchronous interface
Max. bytes in buffer write: 0x20
Number of Erase Block Regions: 1
  Erase Region #0: BlockSize 0x20000 bytes, 128 blocks
 
 Intel/Sharp Extended Query Table at 0x0031
number of CFI chips: 1

=======================================

Everything looks ok.  I can't get the MAKEDEV script to
run on our system, so I try to do a couple manually.  I
enter 'mknod /dev/mtd0 c 90 0' and then 
'mknod /dev/mtdblock0 b 31 0'.  Both work and the devices
are present in the /dev dir.  However when I try to mount
JFFS using 'mount -t jfss /dev/mtdblock0 /mnt', I get the
following:

=======================================

[root@Linux /dev]$mount -t jffs /dev/mtdblock0 /mnt
JFFS: Trying to mount device 1f:00.
jffs_scan_flash(): start pos = 0x0, end = 0x16777216
jffs_scan_flash(): 0xff at pos 0x0.
jffs_scan_flash(): 0xff ended at pos 0x1097152.
jffs_scan_flash(): 0x00 at pos 0x1097152.
jffs_scan_flash(): 0x00 ended at pos 0x1098176.
*************** Dirty flash memory or bad inode: hexdump(pos =
0x1098176, len =
128):
1098176: 0018 0000 0018 0000 3d00 0000 ac05 0000  ........=.......
1098192: 8f16 0000 0100 0000 0000 0000 0000 0000  ................
1098208: 0020 0000 0020 0000 0018 0000 8618 5d39  ..............]9
1098224: ea18 5d39 0100 1400 53ef 0100 0100 0000  ..]9....S.......
1098240: 8518 5d39 004e ed00 0000 0000 0100 0000  ..]9.N..........
1098256: 0000 0000 0b00 0000 8000 0000 0000 0000  ................
1098272: 0200 0000 0100 0000 d285 611c 3947 4857  ..........a.9GHW
1098288: a6c2 3cee 5e93 efb7 0000 0000 0000 0000  ..<.^...........
Didn't read all bytes in flash_read_u32()
Didn't read all bytes in flash_read_u32()
Didn't read [etc, this line goes on for many many screens]

=======================================

Do I need to 'mknod' all the devices that MAKEDEV does?
To me, this seems like a problem beyond that.

Any suggestions as to what is going on?  Is it my flash?

Thanks,
   -- kelly



_______________________________________________________
Do You Yahoo!?
Get your free @yahoo.ca address at http://mail.yahoo.ca


To unsubscribe, send "unsubscribe mtd" to majordomo@infradead.org

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2000-07-13 13:57 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2000-07-11 21:23 mtd devices & jffs Juan Gonzo
2000-07-12  8:19 ` David Woodhouse
2000-07-12  9:35   ` David Woodhouse
2000-07-13 12:53     ` Config.in Sébastien Côté
2000-07-13 13:43       ` Config.in David Woodhouse
2000-07-13 13:58         ` Config.in Sébastien Côté
  -- strict thread matches above, loose matches on Subject: below --
2000-07-10 22:19 mtd devices & jffs Juan Gonzo
2000-07-11  6:37 ` Rogelio M. Serrano Jr.
2000-07-11  7:30 ` David Woodhouse
2000-07-12  1:10 ` Rogelio M. Serrano Jr.
2000-07-12  8:20   ` David Woodhouse

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