Changeset 752 for trunk/platforms/almos-tsar-mipsel
- Timestamp:
- Jul 18, 2014, 11:38:54 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/platforms/almos-tsar-mipsel/top.cpp
r614 r752 201 201 ///////////////////////////////////////////////////////// 202 202 // There is 3 segments replicated in all clusters 203 // and 5 specific segments in the "IO" cluster 203 // and 5 specific segments in the "IO" cluster 204 204 // (containing address 0xBF000000) 205 205 ///////////////////////////////////////////////////////// 206 206 // Physical Address Decoding: 8 GID + 8 LID + 16 offset. 207 207 ///////////////////////////////////////////////////////// 208 #define RAM_BASE 0x00000000 208 #define RAM_BASE 0x00000000 209 209 #define RAM_SIZE 0x00C00000 210 210 211 #define BROM_BASE 0xBFC00000 211 #define BROM_BASE 0xBFC00000 212 212 #define BROM_SIZE 0x00100000 213 213 214 #define FBUF_BASE 0xBFD00000 214 #define FBUF_BASE 0xBFD00000 215 215 #define FBUF_SIZE 0x00200000 216 216 217 #define XICU_BASE 0x00F00000 217 #define XICU_BASE 0x00F00000 218 218 #define XICU_SIZE 0x00002000 219 219 … … 221 221 #define BDEV_SIZE 0x00000100 222 222 223 #define MTTY_BASE 0xBFF20000 223 #define MTTY_BASE 0xBFF20000 224 224 #define MTTY_SIZE 0x00000100 225 225 … … 227 227 #define MDMA_SIZE 0x00001000 * NB_DMA_CHANNELS // 4 Kbytes per channel 228 228 229 #define MEMC_BASE 0x00F40000 229 #define MEMC_BASE 0x00F40000 230 230 #define MEMC_SIZE 0x00001000 231 231 … … 233 233 #define SIMH_SIZE 0x00001000 234 234 235 #define CDMA_BASE 0xBFF60000 235 #define CDMA_BASE 0xBFF60000 236 236 #define CDMA_SIZE 0x00000100 237 237 … … 255 255 bool debug_ok = false; // trace activated 256 256 size_t debug_period = 1; // trace period 257 size_t debug_memc_id = 0; // index of memc to be traced 257 size_t debug_memc_id = 0; // index of memc to be traced 258 258 size_t debug_proc_id = 0; // index of proc to be traced 259 259 uint32_t debug_from = 0; // trace start cycle … … 596 596 { 597 597 for (size_t y = 0; y < ymax ; y++) 598 { 598 { 599 599 600 600 sc_uint<vci_address_width> offset; … … 781 781 } 782 782 } 783 std::cout << std::endl << "Horizontal connections established" << std::endl; 783 std::cout << std::endl << "Horizontal connections established" << std::endl; 784 784 785 785 // Inter Clusters vertical connections
Note: See TracChangeset
for help on using the changeset viewer.