Ignore:
Timestamp:
Mar 3, 2014, 5:11:06 PM (10 years ago)
Author:
cfuguet
Message:

Introducing a RAMDISK driver in the preloader.

When using RAMDISK, execute the make command with the flags
SOCLIB=1 and RAMDISK=1. The RDK_PADDR_BASE variable must
also be set on the conf/<platform>/defs_platform.h

These modifications are backward compatibles. Therefore,
when no using RAMDISK, none modifications applied on the
platform configuration file.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/softs/tsar_boot/include/reset_utils.h

    r586 r653  
    1919extern void reset_print_elf_phdr(Elf32_Phdr * elf_phdr_ptr);
    2020
    21 #endif
     21#if USE_IOB
     22void reset_mcc_invalidate ( const void * buffer,
     23                            unsigned int size);
     24#endif /* USE_IOB */
     25
     26#if (CACHE_COHERENCE == 0) || USE_IOB
     27void reset_buf_invalidate ( const void * buffer,
     28                            unsigned int line_size,
     29                            unsigned int size);
     30#endif /* (CACHE_COHERENCE == 0) || USE_IOB */
     31#endif /* BOOT_UTILS_H */
    2232
    2333// vim: tabstop=4 : softtabstop=4 : shiftwidth=4 : expandtab
Note: See TracChangeset for help on using the changeset viewer.