[top] Make top-level connection

Signed-off-by: Michael Schaffner <msf@opentitan.org>
diff --git a/hw/top_earlgrey/data/autogen/top_earlgrey.gen.hjson b/hw/top_earlgrey/data/autogen/top_earlgrey.gen.hjson
index d504cf9..f327708 100644
--- a/hw/top_earlgrey/data/autogen/top_earlgrey.gen.hjson
+++ b/hw/top_earlgrey/data/autogen/top_earlgrey.gen.hjson
@@ -1295,6 +1295,18 @@
           index: -1
         }
         {
+          struct: lc_tx
+          type: uni
+          name: lc_check_byp_en
+          act: rcv
+          default: lc_ctrl_pkg::Off
+          package: lc_ctrl_pkg
+          inst_name: otp_ctrl
+          width: 1
+          top_signame: lc_ctrl_lc_check_byp_en
+          index: -1
+        }
+        {
           struct: otp_keymgr_key
           type: uni
           name: otp_keymgr_key
@@ -1710,6 +1722,19 @@
         {
           struct: lc_tx
           type: uni
+          name: lc_check_byp_en
+          act: req
+          default: lc_ctrl_pkg::Off
+          package: lc_ctrl_pkg
+          inst_name: lc_ctrl
+          width: 1
+          top_type: broadcast
+          top_signame: lc_ctrl_lc_check_byp_en
+          index: -1
+        }
+        {
+          struct: lc_tx
+          type: uni
           name: lc_creator_seed_sw_rw_en
           act: req
           default: lc_ctrl_pkg::Off
@@ -5605,6 +5630,10 @@
         sram_ctrl_main.lc_escalate_en
         sram_ctrl_ret.lc_escalate_en
       ]
+      lc_ctrl.lc_check_byp_en:
+      [
+        otp_ctrl.lc_check_byp_en
+      ]
       lc_ctrl.lc_clk_byp_req: []
       lc_ctrl.lc_creator_seed_sw_rw_en:
       [
@@ -8845,6 +8874,18 @@
         index: -1
       }
       {
+        struct: lc_tx
+        type: uni
+        name: lc_check_byp_en
+        act: rcv
+        default: lc_ctrl_pkg::Off
+        package: lc_ctrl_pkg
+        inst_name: otp_ctrl
+        width: 1
+        top_signame: lc_ctrl_lc_check_byp_en
+        index: -1
+      }
+      {
         struct: otp_keymgr_key
         type: uni
         name: otp_keymgr_key
@@ -9158,6 +9199,19 @@
       {
         struct: lc_tx
         type: uni
+        name: lc_check_byp_en
+        act: req
+        default: lc_ctrl_pkg::Off
+        package: lc_ctrl_pkg
+        inst_name: lc_ctrl
+        width: 1
+        top_type: broadcast
+        top_signame: lc_ctrl_lc_check_byp_en
+        index: -1
+      }
+      {
+        struct: lc_tx
+        type: uni
         name: lc_creator_seed_sw_rw_en
         act: req
         default: lc_ctrl_pkg::Off
@@ -11800,6 +11854,14 @@
       {
         package: lc_ctrl_pkg
         struct: lc_tx
+        signame: lc_ctrl_lc_check_byp_en
+        width: 1
+        type: uni
+        default: lc_ctrl_pkg::Off
+      }
+      {
+        package: lc_ctrl_pkg
+        struct: lc_tx
         signame: lc_ctrl_lc_clk_byp_req
         width: 1
         type: uni
diff --git a/hw/top_earlgrey/data/top_earlgrey.hjson b/hw/top_earlgrey/data/top_earlgrey.hjson
index 48eadb8..4ae1846 100755
--- a/hw/top_earlgrey/data/top_earlgrey.hjson
+++ b/hw/top_earlgrey/data/top_earlgrey.hjson
@@ -639,6 +639,7 @@
                                       'sram_ctrl_main.lc_escalate_en',
                                       'sram_ctrl_ret.lc_escalate_en'],
 
+      'lc_ctrl.lc_check_byp_en'    : ['otp_ctrl.lc_check_byp_en'],
       // TODO: OTP Clock bypass signal going from LC to AST/clkmgr
       'lc_ctrl.lc_clk_byp_req'  : [],
       //'lc_ctrl.lc_clk_byp_ack'  : [],
diff --git a/hw/top_earlgrey/rtl/autogen/top_earlgrey.sv b/hw/top_earlgrey/rtl/autogen/top_earlgrey.sv
index bf0c01f..f878280 100644
--- a/hw/top_earlgrey/rtl/autogen/top_earlgrey.sv
+++ b/hw/top_earlgrey/rtl/autogen/top_earlgrey.sv
@@ -302,6 +302,7 @@
   lc_ctrl_pkg::lc_tx_t       lc_ctrl_lc_hw_debug_en;
   lc_ctrl_pkg::lc_tx_t       lc_ctrl_lc_cpu_en;
   lc_ctrl_pkg::lc_tx_t       lc_ctrl_lc_escalate_en;
+  lc_ctrl_pkg::lc_tx_t       lc_ctrl_lc_check_byp_en;
   lc_ctrl_pkg::lc_tx_t       lc_ctrl_lc_clk_byp_req;
   lc_ctrl_pkg::lc_tx_t       lc_ctrl_lc_creator_seed_sw_rw_en;
   lc_ctrl_pkg::lc_tx_t       lc_ctrl_lc_owner_seed_sw_rw_en;
@@ -878,6 +879,7 @@
       .lc_creator_seed_sw_rw_en_i(lc_ctrl_lc_creator_seed_sw_rw_en),
       .lc_seed_hw_rd_en_i(lc_ctrl_lc_seed_hw_rd_en),
       .lc_dft_en_i(lc_ctrl_lc_dft_en),
+      .lc_check_byp_en_i(lc_ctrl_lc_check_byp_en),
       .otp_keymgr_key_o(otp_ctrl_otp_keymgr_key),
       .flash_otp_key_i(flash_ctrl_otp_req),
       .flash_otp_key_o(flash_ctrl_otp_rsp),
@@ -928,6 +930,7 @@
       .lc_flash_rma_req_o(flash_ctrl_rma_req),
       .lc_flash_rma_seed_o(flash_ctrl_rma_seed),
       .lc_flash_rma_ack_i(flash_ctrl_rma_ack),
+      .lc_check_byp_en_o(lc_ctrl_lc_check_byp_en),
       .lc_creator_seed_sw_rw_en_o(lc_ctrl_lc_creator_seed_sw_rw_en),
       .lc_owner_seed_sw_rw_en_o(lc_ctrl_lc_owner_seed_sw_rw_en),
       .lc_iso_part_sw_rd_en_o(lc_ctrl_lc_iso_part_sw_rd_en),