lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [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 | |
Eunchan Kim | cb28a17 | 2019-10-08 16:35:48 -0700 | [diff] [blame] | 5 | from mako import exceptions |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 6 | from mako.template import Template |
| 7 | from pkg_resources import resource_filename |
| 8 | |
| 9 | from .item import NodeType |
| 10 | from .xbar import Xbar |
| 11 | |
| 12 | |
| 13 | def generate(xbar): #xbar: Xbar -> str |
| 14 | """generate uses elaborated model then creates top level Xbar module |
| 15 | with prefix. |
| 16 | """ |
| 17 | |
| 18 | xbar_rtl_tpl = Template( |
Michael Schaffner | c703936 | 2019-10-22 16:16:06 -0700 | [diff] [blame] | 19 | filename=resource_filename('tlgen', 'xbar.rtl.sv.tpl')) |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 20 | xbar_pkg_tpl = Template( |
Michael Schaffner | c703936 | 2019-10-22 16:16:06 -0700 | [diff] [blame] | 21 | filename=resource_filename('tlgen', 'xbar.pkg.sv.tpl')) |
Eunchan Kim | c6a6a3b | 2019-09-12 14:27:43 -0700 | [diff] [blame] | 22 | #xbar_dv_tpl = Template( |
Michael Schaffner | c703936 | 2019-10-22 16:16:06 -0700 | [diff] [blame] | 23 | # filename=resource_filename('tlgen', 'xbar.dv.sv.tpl')) |
Eunchan Kim | c6a6a3b | 2019-09-12 14:27:43 -0700 | [diff] [blame] | 24 | xbar_bind_tpl = Template( |
Michael Schaffner | c703936 | 2019-10-22 16:16:06 -0700 | [diff] [blame] | 25 | filename=resource_filename('tlgen', 'xbar.bind.sv.tpl')) |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 26 | |
Eunchan Kim | cb28a17 | 2019-10-08 16:35:48 -0700 | [diff] [blame] | 27 | try: |
| 28 | out_rtl = xbar_rtl_tpl.render(xbar=xbar, ntype=NodeType) |
| 29 | out_pkg = xbar_pkg_tpl.render(xbar=xbar) |
| 30 | out_bind = xbar_bind_tpl.render(xbar=xbar, ntype=NodeType) |
| 31 | except: |
| 32 | log.error(exceptions.text_error_template().render()) |
| 33 | |
Eunchan Kim | c6a6a3b | 2019-09-12 14:27:43 -0700 | [diff] [blame] | 34 | return (out_rtl, out_pkg, out_bind) |