Changeset 958


Ignore:
Timestamp:
Mar 26, 2015, 5:49:04 PM (9 years ago)
Author:
cfuguet
Message:

update arch.py to comply to the new genmap addPeriph() definition

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/reconfiguration/platforms/tsar_generic_iob/scripts/arch.py

    r927 r958  
    167167
    168168    mapping.addPeriph('FBF', base=fbf_base, size=fbf_size,
    169                       ptype='FBF', arg=fbf_width)
     169                      ptype='FBF', arg0=fbf_width, arg1=fbf_width)
    170170
    171171    mapping.addPeriph('SIM', base=sim_base, size=sim_size,
     
    211211                                    size=xcu_size, ptype='XCU',
    212212                                    channels=nb_procs * IRQ_PER_PROC,
    213                                     arg=16)
     213                                    arg0=16, arg1=16, arg2=16)
    214214
    215215            # MMC IRQ replicated in all clusters
  • trunk/platforms/tsar_mono_fpga/arch.py

    r957 r958  
    160160    xcu = mapping.addPeriph( 'XCU', base = xcu_base, size = xcu_size,
    161161                             ptype = 'XCU', channels = nb_procs * irq_per_proc,
    162                              arg = 16 )
     162                             arg0 = 16, arg1 = 16, arg2 = 16 )
    163163
    164164    mmc = mapping.addPeriph( 'MMC', base = mmc_base, size = mmc_size,
     
    183183
    184184    fbf = mapping.addPeriph( 'FBF', base = fbf_base, size = fbf_size,
    185                              ptype = 'FBF', arg = fbf_width )
     185                             ptype = 'FBF', arg0 = fbf_width , arg1 = fbf_width)
    186186
    187187    ###################################
Note: See TracChangeset for help on using the changeset viewer.