| // Copyright lowRISC contributors. |
| // Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| // SPDX-License-Identifier: Apache-2.0 |
| // |
| module tb; |
| // dep packages |
| import uvm_pkg::*; |
| import dv_utils_pkg::*; |
| import clkmgr_env_pkg::*; |
| import clkmgr_test_pkg::*; |
| |
| // macro includes |
| `include "uvm_macros.svh" |
| `include "dv_macros.svh" |
| |
| wire clk, rst_n; |
| wire clk_main, rst_main_n; |
| wire clk_io, rst_io_n; |
| wire clk_usb, rst_usb_n; |
| wire clk_aon, rst_aon_n; |
| |
| // clock interfaces |
| clk_rst_if clk_rst_if(.clk(clk), .rst_n(rst_n)); |
| clk_rst_if main_clk_rst_if(.clk(clk_main), .rst_n(rst_main_n)); |
| clk_rst_if io_clk_rst_if(.clk(clk_io), .rst_n(rst_io_n)); |
| clk_rst_if usb_clk_rst_if(.clk(clk_usb), .rst_n(rst_usb_n)); |
| clk_rst_if aon_clk_rst_if(.clk(clk_aon), .rst_n(rst_aon_n)); |
| |
| // This is yet to be connected. |
| wire devmode; |
| pins_if #(1) devmode_if(devmode); |
| tl_if tl_if(.clk(clk), .rst_n(rst_n)); |
| |
| // The clkmgr interface. |
| clkmgr_if clkmgr_if(.clk(clk), .rst_n(rst_n), .rst_main_n(rst_main_n)); |
| |
| initial begin |
| // Clocks must be set to active at time 0. The rest of the clock configuration happens |
| // in clkmgr_base_vseq.sv. |
| clk_rst_if.set_active(); |
| main_clk_rst_if.set_active(); |
| io_clk_rst_if.set_active(); |
| usb_clk_rst_if.set_active(); |
| aon_clk_rst_if.set_active(); |
| end |
| |
| // dut |
| clkmgr dut ( |
| .clk_i (clk ), |
| .rst_ni (rst_n ), |
| |
| .clk_main_i (clk_main ), |
| .rst_main_ni (rst_main_n ), |
| .clk_io_i (clk_io ), |
| .rst_io_ni (rst_io_n ), |
| .clk_usb_i (clk_usb ), |
| .rst_usb_ni (rst_usb_n ), |
| .clk_aon_i (clk_aon ), |
| |
| .rst_io_div2_ni (rst_io_n ), |
| // Setting as above... |
| .rst_io_div4_ni (rst_io_n ), |
| |
| .tl_i (tl_if.h2d ), |
| .tl_o (tl_if.d2h ), |
| |
| .pwr_i (clkmgr_if.pwr_i ), |
| .pwr_o (clkmgr_if.pwr_o ), |
| |
| .scanmode_i (clkmgr_if.scanmode_i ), |
| .idle_i (clkmgr_if.idle_i ), |
| |
| .lc_dft_en_i (clkmgr_if.lc_dft_en_i ), |
| .ast_clk_byp_req_o (clkmgr_if.ast_clk_byp_req ), |
| .ast_clk_byp_ack_i (clkmgr_if.ast_clk_byp_ack ), |
| .lc_clk_byp_req_i (clkmgr_if.lc_clk_byp_req ), |
| .lc_clk_byp_ack_o (clkmgr_if.lc_clk_byp_ack ), |
| |
| .jitter_en_o (clkmgr_if.jitter_en_o ), |
| .clocks_ast_o (clkmgr_if.clocks_ast_o ), |
| .clocks_o (clkmgr_if.clocks_o ) |
| |
| // Hook alert and interrupt pins when added. |
| // .alert_rx_i (alert_rx ), |
| // .alert_tx_o (alert_tx ) |
| ); |
| |
| initial begin |
| // Register interfaces with uvm. |
| uvm_config_db#(virtual clk_rst_if)::set(null, "*.env", "clk_rst_vif", clk_rst_if); |
| uvm_config_db#(virtual clk_rst_if)::set(null, "*.env", "main_clk_rst_vif", main_clk_rst_if); |
| uvm_config_db#(virtual clk_rst_if)::set(null, "*.env", "io_clk_rst_vif", io_clk_rst_if); |
| uvm_config_db#(virtual clk_rst_if)::set(null, "*.env", "usb_clk_rst_vif", usb_clk_rst_if); |
| uvm_config_db#(virtual clk_rst_if)::set(null, "*.env", "aon_clk_rst_vif", aon_clk_rst_if); |
| |
| uvm_config_db#(virtual clkmgr_if)::set(null, "*.env", "clkmgr_vif", clkmgr_if); |
| |
| // FIXME Un-comment this once interrupts are created for this ip. |
| // uvm_config_db#(intr_vif)::set(null, "*.env", "intr_vif", intr_if); |
| |
| uvm_config_db#(devmode_vif)::set(null, "*.env", "devmode_vif", devmode_if); |
| uvm_config_db#(virtual tl_if)::set(null, "*.env.m_tl_agent*", "vif", tl_if); |
| $timeformat(-12, 0, " ps", 12); |
| run_test(); |
| end |
| |
| endmodule |