Changeset 975 for trunk/platforms/tsar_mono_fpga
- Timestamp:
- Apr 15, 2015, 4:02:09 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/platforms/tsar_mono_fpga/arch.py
r958 r975 33 33 nb_procs = 2, 34 34 nb_ttys = 1, 35 fbf_width = 480 ): 35 fbf_width = 480, 36 ioc_type = 'BDV' ): 36 37 37 38 ### define architecture constants … … 165 166 ptype = 'MMC' ) 166 167 167 mapping.addIrq( xcu, index = 8 , isrtype = 'ISR_MMC' )168 mapping.addIrq( xcu, index = 8 , src = mmc, isrtype = 'ISR_MMC' ) 168 169 169 170 for p in xrange ( nb_procs ): mapping.addProc( 0, 0, p ) … … 172 173 ptype = 'IOC', subtype = 'BDV' ) 173 174 174 mapping.addIrq( xcu, index = 9 , isrtype = 'ISR_BDV' )175 mapping.addIrq( xcu, index = 9 , src = bdv, isrtype = 'ISR_BDV' ) 175 176 176 177 tty = mapping.addPeriph( 'TTY0', base = tty_base, size = tty_size, 177 178 ptype = 'TTY', channels = nb_ttys ) 178 179 179 mapping.addIrq( xcu, index = 10, isrtype = 'ISR_TTY_RX' )180 mapping.addIrq( xcu, index = 10, src = tty, isrtype = 'ISR_TTY_RX' ) 180 181 181 182 rom = mapping.addPeriph( 'ROM', base = rom_base, size = rom_size,
Note: See TracChangeset
for help on using the changeset viewer.