| 1 |
9 |
root |
<!--# include virtual="/ssi/ssi_start.shtml" -->
|
| 2 |
|
|
<link REL="stylesheet" TYPE="text/css" HREF="/people/tantos/styles.css">
|
| 3 |
|
|
|
| 4 |
|
|
<h1>WisboneTK</h1>
|
| 5 |
|
|
<h2>WishboneTK two-way arbiter</h2>
|
| 6 |
|
|
<h3>Description</h3>
|
| 7 |
|
|
<strong>WishboneTK two-way arbiter</strong> connectrs two master devices to a set of shared slave devies. From the master devices point
|
| 8 |
|
|
of view the shared peripherials will look like a single slave inserted into their local slave's chain. From the shared slaves point of
|
| 9 |
|
|
view the arbiter will act as a master device on behalf of the two real masters. The core is 100% Wishbone compatible
|
| 10 |
|
|
with the <a href="wb_extensions.shtml">WishboneTK extensions</a>. Address select and data buses should be multiplexed to the
|
| 11 |
|
|
common interface externaly but handshake signals are handled by the core. Multiplexer control signals are also provided. The core
|
| 12 |
|
|
is asyncronous to support zero-wait-state operation on the shared bus. Thus the CLK_I signal, required for most Wishbone devies
|
| 13 |
|
|
is not used.
|
| 14 |
|
|
|
| 15 |
|
|
<h3>Wishbone datasheet</h3>
|
| 16 |
|
|
<table border>
|
| 17 |
|
|
<tr><th>Description</th><th>Specification</th></tr>
|
| 18 |
|
|
<tr><td>General Description </td><td>Two-way arbiter.</td></tr>
|
| 19 |
|
|
<tr><td>Supported cycles </td><td>Slave read/write<br>Slave block read/write<br>Slave rmw<br>
|
| 20 |
|
|
Master read/write<br>Master block read/write<br>Master rmw<br></td></tr>
|
| 21 |
|
|
<tr><td>Data port size </td><td>n/a</td></tr>
|
| 22 |
|
|
<tr><td>Data port granularity </td><td>n/a</td></tr>
|
| 23 |
|
|
<tr><td>Data port maximum operand size </td><td>n/a</td></tr>
|
| 24 |
|
|
<tr><td>Data transfer ordering </td><td>n/a</td></tr>
|
| 25 |
|
|
<tr><td>Data transfer sequencing </td><td>n/a</td></tr>
|
| 26 |
|
|
<tr><td>Supported signal list and cross reference to equivalent Wishbone signals</td><td>
|
| 27 |
|
|
<table width="100%">
|
| 28 |
|
|
<tr><th>Signal name</th><th>Wishbone equiv.</th></tr>
|
| 29 |
|
|
<tr><td>RST_I </td><td>RST_I</td></tr>
|
| 30 |
|
|
<tr><th colspan="2">Signals to connect to master A</th></tr>
|
| 31 |
|
|
<tr><td>A_CYC_I </td><td>CYC_I</td></tr>
|
| 32 |
|
|
<tr><td>A_STB_I </td><td>STB_I</td></tr>
|
| 33 |
|
|
<tr><td>A_WE_I </td><td>WE_I </td></tr>
|
| 34 |
|
|
<tr><td>A_ACK_O </td><td>ACK_O</td></tr>
|
| 35 |
|
|
<tr><td>A_RTY_O </td><td>RTY_O</td></tr>
|
| 36 |
|
|
<tr><td>A_ERR_O </td><td>ERR_O</td></tr>
|
| 37 |
|
|
<tr><th colspan="2">Signals to connect to master B</th></tr>
|
| 38 |
|
|
<tr><td>B_CYC_I </td><td>CYC_I</td></tr>
|
| 39 |
|
|
<tr><td>B_STB_I </td><td>STB_I</td></tr>
|
| 40 |
|
|
<tr><td>B_WE_I </td><td>WE_I </td></tr>
|
| 41 |
|
|
<tr><td>B_ACK_O </td><td>ACK_O</td></tr>
|
| 42 |
|
|
<tr><td>B_RTY_O </td><td>RTY_O</td></tr>
|
| 43 |
|
|
<tr><td>B_ERR_O </td><td>ERR_O</td></tr>
|
| 44 |
|
|
<tr><th colspan="2">Signals to connect to shared slaves</th></tr>
|
| 45 |
|
|
<tr><td>S_CYC_O </td><td>CYC_O</td></tr>
|
| 46 |
|
|
<tr><td>S_STB_O </td><td>STB_O</td></tr>
|
| 47 |
|
|
<tr><td>S_WE_O </td><td>WE_O </td></tr>
|
| 48 |
|
|
<tr><td>S_ACK_I </td><td>ACK_I</td></tr>
|
| 49 |
|
|
<tr><td>S_RTY_I </td><td>RTY_I</td></tr>
|
| 50 |
|
|
<tr><td>S_ERR_I </td><td>ERR_I</td></tr>
|
| 51 |
|
|
</table>
|
| 52 |
|
|
</table>
|
| 53 |
|
|
<h3>Signal description</h3>
|
| 54 |
|
|
<table border>
|
| 55 |
|
|
<tr><th>Signal name</th><th>Description</th></tr>
|
| 56 |
|
|
<!-- SLAVE SIGNALS -->
|
| 57 |
|
|
<tr><th colspan="2">Signals to connect to master A</th></tr>
|
| 58 |
|
|
<tr><td>A_RST_I </td><td>Wishbone reset signal</td></tr>
|
| 59 |
|
|
<tr><td>A_CYC_I </td><td>Wishbone cycle signal. High value frames blocks of access</td></tr>
|
| 60 |
|
|
<tr><td>A_STB_I </td><td>Wishbone strobe signal. High value indicates cycle to this particular device</td></tr>
|
| 61 |
|
|
<tr><td>A_WE_I </td><td>Wishbone write enable signal. High indicates data flowing from master to slave</td></tr>
|
| 62 |
|
|
<tr><td>A_ACK_O </td><td>Wishbone acknowledge signal. High indicates that slave finished operation sucessfully</td></tr>
|
| 63 |
|
|
<tr><td>A_ACK_OI </td><td>WhisboneTK acknowledge chain input signal</td></tr>
|
| 64 |
|
|
<tr><td>A_RTY_O </td><td>Wishbone retry signal. High indicates that slave requests retry of the <strong>last cycle in the block</strong>.</td></tr>
|
| 65 |
|
|
<tr><td>A_RTY_OI </td><td>WhisboneTK retry chain input signal</td></tr>
|
| 66 |
|
|
<tr><td>A_ERR_O </td><td>Wishbone error signal. High indicates that slave cannot complete the <strong>last cycle in the block</strong>.</td></tr>
|
| 67 |
|
|
<tr><td>A_ERR_OI </td><td>WhisboneTK error chain input signal</td></tr>
|
| 68 |
|
|
<tr><th colspan="2">Signals to connect to master B</th></tr>
|
| 69 |
|
|
<tr><td>B_RST_I </td><td>Wishbone reset signal</td></tr>
|
| 70 |
|
|
<tr><td>B_CYC_I </td><td>Wishbone cycle signal. High value frames blocks of access</td></tr>
|
| 71 |
|
|
<tr><td>B_STB_I </td><td>Wishbone strobe signal. High value indicates cycle to this particular device</td></tr>
|
| 72 |
|
|
<tr><td>B_WE_I </td><td>Wishbone write enable signal. High indicates data flowing from master to slave</td></tr>
|
| 73 |
|
|
<tr><td>B_ACK_O </td><td>Wishbone acknowledge signal. High indicates that slave finished operation sucessfully</td></tr>
|
| 74 |
|
|
<tr><td>B_ACK_OI </td><td>WhisboneTK acknowledge chain input signal</td></tr>
|
| 75 |
|
|
<tr><td>B_RTY_O </td><td>Wishbone retry signal. High indicates that slave requests retry of the <strong>last cycle in the block</strong>.</td></tr>
|
| 76 |
|
|
<tr><td>B_RTY_OI </td><td>WhisboneTK retry chain input signal</td></tr>
|
| 77 |
|
|
<tr><td>B_ERR_O </td><td>Wishbone error signal. High indicates that slave cannot complete the <strong>last cycle in the block</strong>.</td></tr>
|
| 78 |
|
|
<tr><td>B_ERR_OI </td><td>WhisboneTK error chain input signal</td></tr>
|
| 79 |
|
|
<tr><th colspan="2">Signals to connect to shared slaves</th></tr>
|
| 80 |
|
|
<tr><td>S_CYC_O </td><td>Wishbone cycle signal. High value frames blocks of access</td></tr>
|
| 81 |
|
|
<tr><td>S_STB_O </td><td>Wishbone strobe signal. High value indicates cycle to this particular device</td></tr>
|
| 82 |
|
|
<tr><td>S_WE_O </td><td>Wishbone write enable signal. High indicates data flowing from master to slave</td></tr>
|
| 83 |
|
|
<tr><td>S_ACK_I </td><td>Wishbone acknowledge signal. High indicates that slave finished operation sucessfully</td></tr>
|
| 84 |
|
|
<tr><td>S_RTY_I </td><td>Wishbone retry signal. High indicates that slave requests retry of the <strong>last cycle in the block</strong>.</td></tr>
|
| 85 |
|
|
<tr><td>S_ERR_I </td><td>Wishbone error signal. High indicates that slave cannot complete the <strong>last cycle in the block</strong>.</td></tr>
|
| 86 |
|
|
</td></tr></table>
|
| 87 |
|
|
|
| 88 |
|
|
<h2>Author & Maintainer</h2>
|
| 89 |
|
|
<p>
|
| 90 |
|
|
<a href="/people/tantos">Andras Tantos</a>
|
| 91 |
|
|
<!--# include virtual="/ssi/ssi_end.shtml" -->
|