Weicai Yang | a495d20 | 2019-12-05 15:36:27 -0800 | [diff] [blame] | 1 | // Copyright lowRISC contributors. |
| 2 | // Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| 3 | // SPDX-License-Identifier: Apache-2.0 |
| 4 | // |
| 5 | // tb__xbar_connect generated by `tlgen.py` tool |
| 6 | |
| 7 | |
Weicai Yang | d5251ac | 2020-01-06 15:28:48 -0800 | [diff] [blame^] | 8 | xbar_${xbar.name} dut( |
| 9 | // TODO temp use same clk to avoid failure due to new feature (multi-clk #903) |
| 10 | % for c in xbar.clocks: |
| 11 | .${c}(clk), |
| 12 | % endfor |
| 13 | % for r in xbar.resets: |
| 14 | .${r}(rst_n)${"," if not loop.last else ""} |
| 15 | % endfor |
| 16 | ); |
| 17 | |
Weicai Yang | a495d20 | 2019-12-05 15:36:27 -0800 | [diff] [blame] | 18 | // Host TileLink interface connections |
| 19 | % for node in xbar.hosts: |
| 20 | `CONNECT_TL_HOST_IF(${node.name}) |
| 21 | % endfor |
| 22 | |
| 23 | // Device TileLink interface connections |
| 24 | % for node in xbar.devices: |
| 25 | `CONNECT_TL_DEVICE_IF(${node.name}) |
| 26 | % endfor |