Changeset 754
- Timestamp:
- Jul 23, 2014, 11:14:07 AM (10 years ago)
- Location:
- trunk/platforms/tsar_generic_iob
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/platforms/tsar_generic_iob/arch.py
r734 r754 20 20 # - nb_procs : number of processors per cluster 21 21 # 22 # The "hidden" p latform parametersare:22 # The "hidden" parameters (defined below) are: 23 23 # - nb_ttys : number of TTY channels 24 24 # - nb_nics : number of NIC channels … … 111 111 rom_size = 0x4000 # 16 Kbytes 112 112 113 ### define bootloader vsegs base addresses 113 ### define bootloader vsegs base addresses and sizes 114 114 115 115 boot_mapping_vbase = 0x00000000 # ident … … 117 117 118 118 boot_code_vbase = 0x00040000 # ident 119 boot_code_size = 0x000 20000 # 128Kbytes119 boot_code_size = 0x00040000 # 256 Kbytes 120 120 121 boot_data_vbase = 0x00060000 # ident 122 boot_data_size = 0x00010000 # 64 Kbytes 123 124 boot_buffer_vbase = 0x00070000 # ident 125 boot_buffer_size = 0x00060000 # 384 Kbytes 126 127 boot_stack_vbase = 0x000D0000 # ident 121 boot_data_vbase = 0x00080000 # ident 122 boot_data_size = 0x00080000 # 512 Kbytes 123 124 boot_stack_vbase = 0x00100000 # ident 128 125 boot_stack_size = 0x00050000 # 320 Kbytes 129 126 130 ### define kernel vsegs base addresses 127 ### define kernel vsegs base addresses and sizes 131 128 132 129 kernel_code_vbase = 0x80000000 … … 235 232 identity = True ) 236 233 237 mapping.addGlobal( 'seg_boot_buffer', boot_buffer_vbase, boot_buffer_size,238 'C_W_', vtype = 'BUFFER', x = 0, y = 0, pseg = 'RAM',239 identity = True )240 241 234 mapping.addGlobal( 'seg_boot_stack', boot_stack_vbase, boot_stack_size, 242 235 'C_W_', vtype = 'BUFFER', x = 0, y = 0, pseg = 'RAM', -
trunk/platforms/tsar_generic_iob/top.cpp
r739 r754 1423 1423 1424 1424 // Monitor a specific address for one L2 cache 1425 // clusters[0][0]->memc->cache_monitor( 0x1542c0ULL, true ); // single word1425 clusters[0][0]->memc->cache_monitor( 0xE1904ULL, true ); // single word 1426 1426 1427 1427 // Monitor a specific address for one XRAM 1428 // if (n == 3000000) clusters[0][0]->xram->start_monitor( 0x170000ULL , 64);1428 // clusters[0][0]->xram->start_monitor( 0xE1900ULL , 64); 1429 1429 1430 1430 if (debug_ok and (n > debug_from) and (n % debug_period == 0))
Note: See TracChangeset
for help on using the changeset viewer.