[dv:entropy_src] Changes from comments on PR 1862

Signed-off-by: Steve Nelson <steve.nelson@wdc.com>
diff --git a/hw/ip/entropy_src/data/entropy_src_testplan.hjson b/hw/ip/entropy_src/data/entropy_src_testplan.hjson
index d302675..e64f209 100644
--- a/hw/ip/entropy_src/data/entropy_src_testplan.hjson
+++ b/hw/ip/entropy_src/data/entropy_src_testplan.hjson
@@ -5,7 +5,6 @@
   name: "entropy_src"
   // TODO: remove the common testplans if not applicable
   import_testplans: ["hw/dv/tools/testplans/csr_testplan.hjson",
-                     "hw/dv/tools/testplans/mem_testplan.hjson",
                      "hw/dv/tools/testplans/intr_test_testplan.hjson",
                      "hw/dv/tools/testplans/tl_device_access_types_testplan.hjson"]
   entries: [
diff --git a/hw/ip/entropy_src/dv/entropy_src_sim_cfg.hjson b/hw/ip/entropy_src/dv/entropy_src_sim_cfg.hjson
index b3b15dd..2945782 100644
--- a/hw/ip/entropy_src/dv/entropy_src_sim_cfg.hjson
+++ b/hw/ip/entropy_src/dv/entropy_src_sim_cfg.hjson
@@ -12,7 +12,7 @@
   tb: tb
 
   // Simulator used to sign off this block
-  tool: vcs
+  tool: xcelium
 
   // Fusesoc core file used for building the file list.
   fusesoc_core: lowrisc:dv:entropy_src_sim:0.1
diff --git a/hw/ip/entropy_src/dv/env/entropy_src_scoreboard.sv b/hw/ip/entropy_src/dv/env/entropy_src_scoreboard.sv
index 6f1ca8a..fbbdad7 100644
--- a/hw/ip/entropy_src/dv/env/entropy_src_scoreboard.sv
+++ b/hw/ip/entropy_src/dv/env/entropy_src_scoreboard.sv
@@ -60,23 +60,23 @@
       // add individual case item for each csr
       "es_conf": begin
          if (write) begin
-           `uvm_info(`gfn, $sformatf("Write to ES_CONF register"), UVM_NONE)
+           `uvm_info(`gfn, $sformatf("Write to ES_CONF register"), UVM_DEBUG)
 	 end
          else begin
-           `uvm_info(`gfn, $sformatf("Read from ES_CONF register"), UVM_NONE)
+           `uvm_info(`gfn, $sformatf("Read from ES_CONF register"), UVM_DEBUG)
 	 end
       end
       "es_rev": begin
          if (!write) begin
-           `uvm_info(`gfn, $sformatf("Read from ES_REV register"), UVM_NONE)
+           `uvm_info(`gfn, $sformatf("Read from ES_REV register"), UVM_DEBUG)
 	 end
       end
       "intr_state": begin
          if (write) begin
-           `uvm_info(`gfn, $sformatf("Write to INTR_STATE register"), UVM_NONE)
+           `uvm_info(`gfn, $sformatf("Write to INTR_STATE register"), UVM_DEBUG)
 	 end
          else begin
-           `uvm_info(`gfn, $sformatf("Read from INTR_STATE register"), UVM_NONE)
+           `uvm_info(`gfn, $sformatf("Read from INTR_STATE register"), UVM_DEBUG)
 	 end
       end
       default: begin