Changeset 475 for trunk/platforms/tsar_generic_xbar/top.cpp
- Timestamp:
- Jul 26, 2013, 3:44:43 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/platforms/tsar_generic_xbar/top.cpp
r468 r475 27 27 // - the disk controller (BDEV) 28 28 // - the multi-channel network controller (MNIC) 29 // - the multi-channel chained buffer dma controller (CHBUF) 29 30 // - the multi-channel tty controller (MTTY) 30 31 // - the frame buffer controller (FBUF) … … 249 250 #define MNIC_SIZE 0x0000080000 // 512 Kbytes (for 8 channels) 250 251 252 #define CHBUF_BASE 0x00B6000000 253 #define CHBUF_SIZE 0x0000004000 // For 16 Channels 254 251 255 // replicated segments : address is incremented by a cluster offset 252 256 // offset = cluster(x,y) << (address_width-x_width-y_width); … … 274 278 #define MNIC_TGTID 6 275 279 #define BROM_TGTID 7 280 #define CHBUF_TGTID 8 276 281 277 282 ///////////////////////////////// … … 499 504 maptabd.add(Segment("seg_mnic", MNIC_BASE, MNIC_SIZE, 500 505 IntTab(cluster(x,y),MNIC_TGTID), false)); 506 maptabd.add(Segment("seg_chbuf", CHBUF_BASE, CHBUF_SIZE, 507 IntTab(cluster(x,y),CHBUF_TGTID), false)); 501 508 maptabd.add(Segment("seg_brom", BROM_BASE, BROM_SIZE, 502 509 IntTab(cluster(x,y),BROM_TGTID), true)); … … 630 637 BROM_TGTID, 631 638 MNIC_TGTID, 639 CHBUF_TGTID, 632 640 BDEV_TGTID, 633 641 MEMC_WAYS,
Note: See TracChangeset
for help on using the changeset viewer.