* Wanted - simple NOR Flash filing system
@ 2007-04-23 11:34 MikeW
2007-04-23 18:55 ` Charles Manning
0 siblings, 1 reply; 5+ messages in thread
From: MikeW @ 2007-04-23 11:34 UTC (permalink / raw)
To: linux-mtd
For storing a few tens/hundreds of bytes of configuration data,
in a handful of files (no subdirs), read access 99.99%,
write/update once or twice in life of the system.
Fits into single erase block ideally, so might need to hold data in RAM
pending erase - if ever filled the block !
Any suggestions ?
Regards,
MikeW
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Wanted - simple NOR Flash filing system
2007-04-23 11:34 Wanted - simple NOR Flash filing system MikeW
@ 2007-04-23 18:55 ` Charles Manning
2007-04-24 16:03 ` MikeW
2007-04-26 14:09 ` Wanted - simple NOR Flash filing system - JFFS2 ? MikeW
0 siblings, 2 replies; 5+ messages in thread
From: Charles Manning @ 2007-04-23 18:55 UTC (permalink / raw)
To: linux-mtd
On Monday 23 April 2007 23:34, MikeW wrote:
> For storing a few tens/hundreds of bytes of configuration data,
> in a handful of files (no subdirs), read access 99.99%,
> write/update once or twice in life of the system.
> Fits into single erase block ideally, so might need to hold data in RAM
> pending erase - if ever filled the block !
>
> Any suggestions ?
It is far too grand to call this a file system.
This is a bit more like a linear file store, or even more proimitive than
that.
I agree with the basic principle: if you don't need a full fs, then why use
one? You don't need a chainsaw to cut butter!
I have done stuff like this numerous times, but don't have any OSS code to
release.
The last time I did this, I used a pretty simple system that just used records
of the form:
Header byte
2 byte Length
Validity byte (0xFF not set up, 0x0F= in use, 0x03 = deleted
Name
data (length - (strlen(name) + 1 + 1 + 1))
With this mechanism you could only write a whole "file". No append/overwrite
etc. Just rewrite the whole record.
To delete a file you just set the validity byte accordingly.
I had two blocks and when the one got full I would do "garbage collection",
copying the valid "files" through to the new block. With one block you could
store the stuff in RAM.
-- CHarles
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Wanted - simple NOR Flash filing system
2007-04-23 18:55 ` Charles Manning
@ 2007-04-24 16:03 ` MikeW
2007-04-27 7:49 ` David H. Lynch Jr.
2007-04-26 14:09 ` Wanted - simple NOR Flash filing system - JFFS2 ? MikeW
1 sibling, 1 reply; 5+ messages in thread
From: MikeW @ 2007-04-24 16:03 UTC (permalink / raw)
To: linux-mtd
Charles Manning <manningc2 <at> actrix.gen.nz> writes:
>
> On Monday 23 April 2007 23:34, MikeW wrote:
> > For storing a few tens/hundreds of bytes of configuration data,
> > in a handful of files (no subdirs), read access 99.99%,
> > write/update once or twice in life of the system.
> > Fits into single erase block ideally, so might need to hold data in RAM
> > pending erase - if ever filled the block !
> >
> > Any suggestions ?
>
> It is far too grand to call this a file system.
> This is a bit more like a linear file store, or even more proimitive than
> that.
>
> I agree with the basic principle: if you don't need a full fs, then why use
> one? You don't need a chainsaw to cut butter!
>
> I have done stuff like this numerous times, but don't have any OSS code to
> release.
>
> The last time I did this, I used a pretty simple system that just used records
> of the form:
>
> Header byte
> 2 byte Length
> Validity byte (0xFF not set up, 0x0F= in use, 0x03 = deleted
> Name
> data (length - (strlen(name) + 1 + 1 + 1))
>
> With this mechanism you could only write a whole "file". No append/overwrite
> etc. Just rewrite the whole record.
>
> To delete a file you just set the validity byte accordingly.
>
> I had two blocks and when the one got full I would do "garbage collection",
> copying the valid "files" through to the new block. With one block you could
> store the stuff in RAM.
>
Thanks - I have certainly thought before about implementing
such a simple scheme,
but I was wondering if there was already an tested 'off-the'shelf'
set of code since it seems to be such a basic requirement if you don't
want or need JFFS2 size, functionality or overhead.
I have had a direct email (imcd) suggesting storing a tar file directly in
the /dev/mtd, but would prefer that any 'driver' was self-sufficient
so it could potentially be used before kernel boot.
"tarfs", anyone ?
>> (from imcd)
Save:
tar cz -f /dev/mtdblock/1 -C dir .
Load:
tar xz -f /dev/mtdblock/1 -C dir
<<
For now I have made do with a single block romfs device created 'offline',
though in principle I could create the required files in /tmp and then
load them into the erased flash block using genromfs.
Regards,
MikeW
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Wanted - simple NOR Flash filing system - JFFS2 ?
2007-04-23 18:55 ` Charles Manning
2007-04-24 16:03 ` MikeW
@ 2007-04-26 14:09 ` MikeW
1 sibling, 0 replies; 5+ messages in thread
From: MikeW @ 2007-04-26 14:09 UTC (permalink / raw)
To: linux-mtd
Charles Manning <manningc2 <at> actrix.gen.nz> writes:
>
> It is far too grand to call this a file system.
> This is a bit more like a linear file store, or even more proimitive than
> that.
>
> I agree with the basic principle: if you don't need a full fs, then why use
> one? You don't need a chainsaw to cut butter!
...snip...
>
I note from an earlier newsgroup thread
http://thread.gmane.org/gmane.linux.drivers.mtd/3255/focus=3271
that it would be possible to wind down the min blocks requirement
for a JFFS2 filesystem, after all with the usage pattern I described,
who cares about garbage collection or spare blocks ?
It would be very nice if you could somehow set this minimalist option
when doing a mk.jffs2, such that the driver would then be happy (on
that particular filesystem partition) with even a single eraseblock,
but obviously if the block ever filled up you could hardly expect
the driver to handle it for you.
Comments from dwmw2 ?!
Regards,
MikeW
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Wanted - simple NOR Flash filing system
2007-04-24 16:03 ` MikeW
@ 2007-04-27 7:49 ` David H. Lynch Jr.
0 siblings, 0 replies; 5+ messages in thread
From: David H. Lynch Jr. @ 2007-04-27 7:49 UTC (permalink / raw)
To: MikeW, linux-mtd
MikeW wrote:
> Charles Manning <manningc2 <at> actrix.gen.nz> writes:
>
>
>> On Monday 23 April 2007 23:34, MikeW wrote:
>>
>>> For storing a few tens/hundreds of bytes of configuration data,
>>> in a handful of files (no subdirs), read access 99.99%,
>>> write/update once or twice in life of the system.
>>> Fits into single erase block ideally, so might need to hold data in RAM
>>> pending erase - if ever filled the block !
>>>
>>> Any suggestions ?
>>>
>> It is far too grand to call this a file system.
>> This is a bit more like a linear file store, or even more proimitive than
>> that.
>>
>> I agree with the basic principle: if you don't need a full fs, then why use
>> one? You don't need a chainsaw to cut butter!
>>
>> I have done stuff like this numerous times, but don't have any OSS code to
>> release.
>>
>> The last time I did this, I used a pretty simple system that just used records
>> of the form:
>>
>> Header byte
>> 2 byte Length
>> Validity byte (0xFF not set up, 0x0F= in use, 0x03 = deleted
>> Name
>> data (length - (strlen(name) + 1 + 1 + 1))
>>
>> With this mechanism you could only write a whole "file". No append/overwrite
>> etc. Just rewrite the whole record.
>>
>> To delete a file you just set the validity byte accordingly.
>>
>> I had two blocks and when the one got full I would do "garbage collection",
>> copying the valid "files" through to the new block. With one block you could
>> store the stuff in RAM.
>>
>>
>
> Thanks - I have certainly thought before about implementing
> such a simple scheme,
> but I was wondering if there was already an tested 'off-the'shelf'
> set of code since it seems to be such a basic requirement if you don't
> want or need JFFS2 size, functionality or overhead.
>
> I have had a direct email (imcd) suggesting storing a tar file directly in
> the /dev/mtd, but would prefer that any 'driver' was self-sufficient
> so it could potentially be used before kernel boot.
> "tarfs", anyone ?
>
>
>>> (from imcd)
>>>
> Save:
> tar cz -f /dev/mtdblock/1 -C dir .
>
> Load:
> tar xz -f /dev/mtdblock/1 -C dir
> <<
>
> For now I have made do with a single block romfs device created 'offline',
> though in principle I could create the required files in /tmp and then
> load them into the erased flash block using genromfs.
>
> Regards,
> MikeW
>
>
I have very nearly the same situation - except that I have to match
an already existing "file System"
It is pretty trivial, much like ROMFS. I am working on a Driver, but
I am not very far in and it is a low priority.
blocksize is the same as flash sector size,
there is a header at the begining of ALMOST every sector (there is a
specif file type that is FPGS firmware and gets loaded by a CUPLD, so the
filesystem had to adapt to the needs of the CUPLD.
The header has 8 bytes of binary, and then a directory entry which
is basically ASCII strings in the form of var=value.
Pretty much it.
Anyway we already use it. We write to it constantly, and we have yet
to burn out a flash sector.
So long as writing is something that Humans chose to do periodically
- as opposed to the system doing constantly like swap,
it is going to take a long long time to kill a sector.
>
> ______________________________________________________
> Linux MTD discussion mailing list
> http://lists.infradead.org/mailman/listinfo/linux-mtd/
>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2007-04-27 7:51 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-04-23 11:34 Wanted - simple NOR Flash filing system MikeW
2007-04-23 18:55 ` Charles Manning
2007-04-24 16:03 ` MikeW
2007-04-27 7:49 ` David H. Lynch Jr.
2007-04-26 14:09 ` Wanted - simple NOR Flash filing system - JFFS2 ? MikeW
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox