Changeset 493 for trunk/platforms
- Timestamp:
- Aug 14, 2013, 11:21:11 PM (11 years ago)
- Location:
- trunk/platforms
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/platforms/tsar_generic_iob/top.cpp
r490 r493 1333 1333 { 1334 1334 // Monitor a specific address for L1 & L2 caches 1335 // clusters[1][ 0]->proc[0]->cache_monitor(0x4000ULL);1335 // clusters[1][1]->proc[0]->cache_monitor(0x8ba4ULL); 1336 1336 // clusters[0][0]->memc->cache_monitor( 0x25000ULL); 1337 1337 -
trunk/platforms/tsar_generic_xbar/top.cpp
r485 r493 23 23 // 24 24 // All clusters are identical, but the cluster 0 (called io_cluster), 25 // contains 5extra components:25 // contains 6 extra components: 26 26 // - the boot rom (BROM) 27 27 // - the disk controller (BDEV) 28 28 // - the multi-channel network controller (MNIC) 29 // - the multi-channel chained buffer dma controller (C HBUF)29 // - the multi-channel chained buffer dma controller (CDMA) 30 30 // - the multi-channel tty controller (MTTY) 31 31 // - the frame buffer controller (FBUF) … … 148 148 #define vci_trdid_width 4 149 149 #define vci_wrplen_width 1 150 150 151 //////////////////////////////////////////////////////////// 151 152 // Main Hardware Parameters values … … 250 251 #define MNIC_SIZE 0x0000080000 // 512 Kbytes (for 8 channels) 251 252 252 #define C HBUF_BASE 0x00B6000000253 #define C HBUF_SIZE 0x0000004000 * NB_CMA_CHANNELS253 #define CDMA_BASE 0x00B6000000 254 #define CDMA_SIZE 0x0000004000 * NB_CMA_CHANNELS 254 255 255 256 // replicated segments : address is incremented by a cluster offset … … 278 279 #define MNIC_TGTID 6 279 280 #define BROM_TGTID 7 280 #define C HBUF_TGTID 8281 #define CDMA_TGTID 8 281 282 282 283 ///////////////////////////////// … … 290 291 char soft_name[256] = soft_pathname; // pathname to binary code 291 292 #endif 292 uint64_t ncycles = 1000000000 00;// simulated cycles293 uint64_t ncycles = 1000000000; // simulated cycles 293 294 char disk_name[256] = BDEV_IMAGE_NAME; // pathname to the disk image 294 295 char nic_rx_name[256] = NIC_RX_NAME; // pathname to the rx packets file … … 504 505 maptabd.add(Segment("seg_mnic", MNIC_BASE, MNIC_SIZE, 505 506 IntTab(cluster(x,y),MNIC_TGTID), false)); 506 maptabd.add(Segment("seg_c hbuf", CHBUF_BASE, CHBUF_SIZE,507 IntTab(cluster(x,y),C HBUF_TGTID), false));507 maptabd.add(Segment("seg_cdma", CDMA_BASE, CDMA_SIZE, 508 IntTab(cluster(x,y),CDMA_TGTID), false)); 508 509 maptabd.add(Segment("seg_brom", BROM_BASE, BROM_SIZE, 509 510 IntTab(cluster(x,y),BROM_TGTID), true)); … … 637 638 BROM_TGTID, 638 639 MNIC_TGTID, 639 C HBUF_TGTID,640 CDMA_TGTID, 640 641 BDEV_TGTID, 641 642 MEMC_WAYS,
Note: See TracChangeset
for help on using the changeset viewer.