Ignore:
Timestamp:
Aug 26, 2014, 3:08:14 PM (10 years ago)
Author:
cfuguet
Message:

reconfiguration/tsar_generic_iob: introducing simhelper component

File:
1 edited

Legend:

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

    r768 r769  
    109109    pic_size  = 0x1000                     # 4 Kbytes
    110110
     111    sim_base  = 0x00B9000000 + offset_io
     112    sim_size  = 0x1000                     # 4 kbytes
     113
    111114    iob_base  = 0x00BE000000 + offset_io
    112115    iob_size  = 0x1000                     # 4 kbytes
    113 
    114116
    115117    ### GIET_VM specifics virtual segments
     
    179181    pic = mapping.addPeriph( 'PIC', base = pic_base, size = pic_size, ptype = 'PIC', channels = 32 )
    180182
     183    sim = mapping.addPeriph( 'SIM', base = sim_base, size = sim_size, ptype = 'SIM' )
     184
    181185    mapping.addIrq( pic, index = 0, isrtype = 'ISR_NIC_RX', channel = 0 )
    182186    mapping.addIrq( pic, index = 1, isrtype = 'ISR_NIC_RX', channel = 1 )
     
    304308                       identity = True )
    305309
     310    mapping.addGlobal( 'seg_sim', sim_base, sim_size, '__W_',
     311                       vtype = 'PERI', x = 0, y = 0, pseg = 'SIM',
     312                       identity = True )
    306313
    307314    ### global vsegs for internal peripherals, and for schedulers
Note: See TracChangeset for help on using the changeset viewer.