This is the mail archive of the ecos-discuss@sources.redhat.com mailing list for the eCos project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: flash size calculation


Christoph Csebits wrote:
> 
> hi
> 
> in the most platforms start-address and end-address
> of the flash devices are calculated like the following:
> 
> flash_info.start = (void *)CYGNUM_FLASH_BASE;
> flash_info.end = (void *)(CYGNUM_FLASH_BASE+ (FLASH_NUM_REGIONS
>         * FLASH_BLOCK_SIZE * CYGNUM_FLASH_INTERLEAVE * CYGNUM_FLASH_SERIES));
> 
> Supposed i have an 8MB flash starting at 0xFF800000:
> flash_info.start = 0xFF800000
> flash_info.end = 0x00000000 (overflow).
> 
> Is it sufficient to decrement the end address by one?

Probably not good: looking at redboot's load_flash_config() function, it
uses the flash_end (set from flash_info.end) to calculate the base for the
flash config. But that should be aligned to a flash block.

This is an oversight in the flash code. Patches welcome :-). Probably the
thing to do is make the flash end address be an unsigned long long, and
change all the types that use it accordingly (like flash_end).

Jifl
-- 
Red Hat, Rustat House, Clifton Road, Cambridge, UK. Tel: +44 (1223) 271062
Maybe this world is another planet's Hell -Aldous Huxley || Opinions==mine


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]