Ignore:
Timestamp:
Aug 12, 2012, 1:35:34 PM (12 years ago)
Author:
karaoui
Message:

+ removing some bugs from:

  • xml_parser.c: check that strcmp == 0 for coproc direction
  • mwmr_channel.c: mwmr->ptr to ptr.
  • utils.h double definition of memcpy fonction.

+ mapping_info.h : naming the enums
+ boot_init.c: changing the order of initialisation in order

to initialise the coproc with the mwmr channel values( depth, width...).
Note that the vobjs are now physically initialised.

+ mwmr_channel.h: changing the order argument definition to suit vci_mwmr_channel Soclib componnent.
+ hwr_mapping.h: adding the register description of the vci_mwmr_controller .

File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/libs/mwmr_channel.c

    r195 r200  
    196196            for ( x = 0 ; x < nwords ; x++ ) 
    197197            {
    198                 buffer[x] = mwmr->data[mwmr->ptr];
     198                buffer[x] = mwmr->data[ptr];
    199199                if ( (ptr + 1) == depth ) ptr = 0;
    200200                else                      ptr = ptr + 1;
Note: See TracChangeset for help on using the changeset viewer.