blob: acc7c33c173e9108f286ff2f8b463a88d05a0a93 [file] [log] [blame]
Weicai Yanga495d202019-12-05 15:36:27 -08001// 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 Yangd5251ac2020-01-06 15:28:48 -08008xbar_${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 Yanga495d202019-12-05 15:36:27 -080018// 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