Intel® Quartus® Prime Software
Intel® Quartus® Prime Design Software, Design Entry, Synthesis, Simulation, Verification, Timing Analysis, System Design (Platform Designer, formerly Qsys)
16603 Discussions

We would like to export one signal from a connected interface in Platform designer.

PGigl
Partner
1,239 Views

The design is using the MSGDMA component. I would like to export the "mm_read_waitrequest" signal from within "mm_read" interface.  The tools only let you export the entire interface, or connect the interface, but not both.  Furthermore, the Platform Designer On-line Training indicates that using a bridge component can be used to duplicate the interface.  How is this accomplished?

0 Kudos
1 Reply
sstrell
Honored Contributor III
254 Views

A pipeline bridge has a master interface on one side and a slave on the other. So you would change something like this:

 

master -> slave

 

to something like this:

 

master -------> slave

|

----> slave (bridge) -> master (bridge; exported)

 

The bridge gets added to the address space of the master, so you have to make sure you set the bridge up with enough address bits. See this online training (it has other PD optimization techniques, but there is a slide on address coherency with pipeline bridges):

 

https://www.intel.com/content/www/us/en/programmable/support/training/course/oaqsysopt.html

0 Kudos
Reply