Ignore:
Timestamp:
Mar 26, 2014, 6:44:44 PM (10 years ago)
Author:
alain
Message:

Introducing a major release, to suppoort the tsar_generic_leti platform
and the various (external or internal) peripherals configurations.
The map.xml format has been modified, in order to support the new
vci_iopic componentand a new policy for peripherals initialisation.
The IRQs are nom described in the XICU and IOPIC components
(and not anymore in the processors).
To enforce this major change, the map.xml file signature changed:
The signature value must be: 0xDACE2014

This new release has been tested on the tsar_generic_leti platform
for the following mappings:

  • 4c_4p_sort_leti
  • 4c_4p_sort_leti_ext
  • 4c_4p_transpose_leti
  • 4c_4p_transpose_leti_ext
  • 4c_1p_four_leti_ext
File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/giet_drivers/mmc_driver.c

    r263 r295  
    5757    if ( (x >= X_SIZE) || (y >= Y_SIZE) )
    5858    {
    59         _puts("\n[GIET ERROR] in _memc_inval() : illegal cluster index[");
    60         _putd( x );
    61         _puts(",");
    62         _putd( y );
    63         _puts("]\n");
    64         _puts("   - paddr      = ");
    65         _putl( buf_paddr );
    66         _puts("\n   - cluster_xy = ");
    67         _putx( cluster_xy );
    68         _puts("\n");
     59        _printf("\n[GIET ERROR] in _memc_inval() : illegal cluster_xy for paddr %l\n",
     60                 buf_paddr );
    6961        _exit();
    7062    }
     
    10294    if ( (x >= X_SIZE) || (y >= Y_SIZE) )
    10395    {
    104         _puts("\n[GIET ERROR] in _memc_sync() : illegal cluster index[");
    105         _putd( x );
    106         _puts(",");
    107         _putd( y );
    108         _puts("]\n");
    109         _puts("   - paddr      = ");
    110         _putl( buf_paddr );
    111         _puts("\n   - cluster_xy = ");
    112         _putx( cluster_xy );
    113         _puts("\n");
     96        _printf( "\n[GIET ERROR] in _memc_sync() : illegal cluster_xy for paddr %l\n",
     97                 buf_paddr );
    11498        _exit();
    11599    }
Note: See TracChangeset for help on using the changeset viewer.