Changes between Version 3 and Version 4 of DsxMapping
- Timestamp:
- Mar 13, 2009, 10:30:53 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DsxMapping
v3 v4 37 37 == as Coprocessor == 38 38 39 A n `HwTask()` implementation must exist for the task in order to be able to map it as39 A `SyntheticTask()` or `MwmrCoproc()` implementation must exist for the task in order to be able to map it as 40 40 a coprocessor. 41 42 You must have a netlist with a coprocessor instanciated (see HwTask) in it. Then you have to map the task on this coprocessor: 43 44 * Mandatory arguments: 45 * `coprocessor`: 46 Name of the coprocessor component. 47 * `controller`: 48 Name of the (mwmr) controller component. 49 * Example: 50 {{{ 51 mapper.map( "idct0", 52 coprocessor = "fifo_idct0", 53 controller = "fifo_idct0_ctrl") 54 }}} 55 56 '''Deprecated method''': 41 57 42 58 * Mandatory arguments: 43 59 * `vci`: 44 60 A VCI interconnect to connect MwMr controller to. 61 * `address`: 62 Address to map MwMr controller at. 45 63 * Example: 46 64 {{{ 47 65 mapper.map( "cons0", 48 vci = mapper.hard.vgmn) 66 vci = mapper.hard.vgmn, 67 address = 0x71200000 ) 49 68 }}} 50 69