| // Copyright lowRISC contributors. |
| // Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| // SPDX-License-Identifier: Apache-2.0 |
| |
| package edn_env_pkg; |
| // dep packages |
| import uvm_pkg::*; |
| import top_pkg::*; |
| import dv_utils_pkg::*; |
| import push_pull_agent_pkg::*; |
| import dv_lib_pkg::*; |
| import tl_agent_pkg::*; |
| import cip_base_pkg::*; |
| import csr_utils_pkg::*; |
| import edn_ral_pkg::*; |
| |
| // macro includes |
| `include "uvm_macros.svh" |
| `include "dv_macros.svh" |
| |
| // parameters |
| parameter uint NUM_ENDPOINTS = 2; |
| parameter uint ENDPOINT_BUS_WIDTH = 32; |
| parameter uint GENBITS_BUS_WIDTH = 128; |
| |
| // types |
| |
| // functions |
| |
| // package sources |
| `include "edn_env_cfg.sv" |
| `include "edn_env_cov.sv" |
| `include "edn_virtual_sequencer.sv" |
| `include "edn_scoreboard.sv" |
| `include "edn_env.sv" |
| `include "edn_vseq_list.sv" |
| |
| endpackage |