| // Copyright lowRISC contributors. |
| // Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| // SPDX-License-Identifier: Apache-2.0 |
| // TODO: This module is only a draft implementation that covers most of the rstmgr |
| // functoinality but is incomplete |
| |
| <% |
| clks_attr = cfg['clocks'] |
| srcs = clks_attr['srcs'] |
| grps = clks_attr['groups'] |
| num_grps = len(grps) |
| %> |
| |
| # CLKMGR register template |
| # |
| { |
| name: "CLKMGR", |
| scan: "true", |
| clock_primary: "clk_i", |
| other_clock_list: [], |
| reset_primary: "rst_ni", |
| other_reset_list: [ |
| % for src in srcs: |
| % if src['aon'] == 'no': |
| "rst_${src['name']}_ni" |
| % endif |
| % endfor |
| % for src in div_srcs: |
| "rst_${src['name']}_ni" |
| % endfor |
| ] |
| bus_device: "tlul", |
| regwidth: "32", |
| param_list: [ |
| { name: "NumGroups", |
| desc: "Number of clock groups", |
| type: "int", |
| default: "${num_grps}", |
| local: "true" |
| }, |
| ], |
| |
| inter_signal_list: [ |
| { struct: "clkmgr_out", |
| type: "uni", |
| name: "clocks", |
| act: "req", |
| package: "clkmgr_pkg", |
| }, |
| |
| { struct: "lc_tx", |
| type: "uni", |
| name: "ast_clk_bypass_ack", |
| act: "rcv", |
| package: "lc_ctrl_pkg", |
| }, |
| |
| { struct: "lc_tx", |
| type: "uni", |
| name: "lc_clk_bypass_ack", |
| act: "req", |
| package: "lc_ctrl_pkg", |
| }, |
| |
| // All clock inputs |
| % for src in srcs: |
| { struct: "logic", |
| type: "uni", |
| name: "clk_${src['name']}", |
| act: "rcv", |
| package: "", |
| }, |
| % endfor |
| |
| // Exported clocks |
| % for intf in export_clks: |
| { struct: "clkmgr_${intf}_out", |
| type: "uni", |
| name: "clocks_${intf}", |
| act: "req", |
| package: "clkmgr_pkg", |
| }, |
| % endfor |
| |
| { struct: "pwr_clk", |
| type: "req_rsp", |
| name: "pwr", |
| act: "rsp", |
| }, |
| |
| { struct: "logic", |
| type: "uni", |
| name: "idle", |
| act: "rcv", |
| package: "", |
| width: "${len(hint_clks)}" |
| }, |
| ], |
| |
| |
| registers: [ |
| { name: "CLK_ENABLES", |
| desc: ''' |
| Clock enable for software gateable clocks. |
| These clocks are direclty controlled by software. |
| ''', |
| swaccess: "rw", |
| hwaccess: "hro", |
| fields: [ |
| % for clk in sw_clks: |
| { |
| bits: "${loop.index}", |
| name: "${clk.upper()}_EN", |
| resval: 1, |
| desc: ''' |
| 0 ${clk.upper()} is disabled. |
| 1 ${clk.upper()} is enabled. |
| ''' |
| } |
| % endfor |
| ] |
| // the CLK_ENABLE register cannot be written, otherwise there is the potential clocks could be |
| // disabled and the system will hang |
| tags: ["excl:CsrAllTests:CsrExclAll"] |
| }, |
| |
| { name: "CLK_HINTS", |
| desc: ''' |
| Clock hint for software gateable clocks. |
| These clocks are not fully controlled by software. |
| |
| For disable, software only provides a hint, and hardware determines the final clock state based on the |
| hint and whether the block in question is idle. |
| |
| ''', |
| swaccess: "rw", |
| hwaccess: "hro", |
| fields: [ |
| % for clk in hint_clks: |
| { |
| bits: "${loop.index}", |
| name: "${clk.upper()}_HINT", |
| resval: 1, |
| desc: ''' |
| 0 ${clk.upper()} can be disabled. |
| 1 ${clk.upper()} is enabled. |
| ''' |
| } |
| % endfor |
| ] |
| // the CLK_HINT register cannot be written, otherwise there is the potential clocks could be |
| // disabled and the system will hang |
| tags: ["excl:CsrAllTests:CsrExclAll"] |
| }, |
| |
| { name: "CLK_HINTS_STATUS", |
| desc: ''' |
| Since the final state of !!CLK_HINTS is not always determined by software, |
| this register provides read feedback for the current clock state. |
| |
| ''', |
| swaccess: "ro", |
| hwaccess: "hwo", |
| fields: [ |
| % for clk in hint_clks.keys(): |
| { |
| bits: "${loop.index}", |
| name: "${clk.upper()}_VAL", |
| resval: 1, |
| desc: ''' |
| 0 ${clk.upper()} is disabled. |
| 1 ${clk.upper()} is enabled. |
| ''' |
| } |
| % endfor |
| ] |
| }, |
| ] |
| } |