]> jspc29.x-matter.uni-frankfurt.de Git - trbnet.git/commitdiff
fix ecp5 gbe_wrapper, remove _single from name for compatibility with ecp3
authorJan Michel <j.michel@gsi.de>
Tue, 9 Aug 2022 11:06:31 +0000 (13:06 +0200)
committerJan Michel <j.michel@gsi.de>
Tue, 9 Aug 2022 11:06:31 +0000 (13:06 +0200)
gbe_trb_ecp5/base/gbe_wrapper_single.vhd

index d9752f8efd52f28b7f24ca38efa5e9fb25f6f7a2..d6646b88865bf199df92a11e8c1b104b882e2cc1 100644 (file)
@@ -11,7 +11,7 @@ use work.trb_net_gbe_components.all;
 use work.trb_net_gbe_protocols.all;
 
 
-entity gbe_wrapper_single is
+entity gbe_wrapper is
   generic(
     DO_SIMULATION             : integer range 0 to 1         := 0;
     INCLUDE_DEBUG             : integer range 0 to 1         := 0;
@@ -98,9 +98,9 @@ entity gbe_wrapper_single is
     STATUS_OUT                : out std_logic_vector(15 downto 0);
     DEBUG_OUT                 : out std_logic_vector(127 downto 0)
   );
-end entity gbe_wrapper_single;
+end entity gbe_wrapper;
 
-architecture RTL of gbe_wrapper_single is
+architecture RTL of gbe_wrapper is
   signal mac_ready_conf             : std_logic;
   signal mac_reconf                 : std_logic;
   signal mac_an_ready               : std_logic;
@@ -678,12 +678,12 @@ begin
     GSC_INIT_DATA_OUT       <= (others => '0');
     GSC_INIT_PACKET_NUM_OUT <= (others => '0');
     GSC_REPLY_READ_OUT      <= '1';
-    mlt_gsc_clk             <= (others => '0');
-    mlt_gsc_init_read       <= (others => '0');
-    mlt_gsc_reply_dataready <= (others => '0');
+    mlt_gsc_clk             <= '0';
+    mlt_gsc_init_read       <= '0';
+    mlt_gsc_reply_dataready <= '0';
     mlt_gsc_reply_data      <= (others => '0');
     mlt_gsc_reply_packet    <= (others => '0');
-    mlt_gsc_busy            <= (others => '0');
+    mlt_gsc_busy            <= '0';
   end generate NOSCTRL_MAP_GEN;
 
   SCTRL_MAP_GEN : if (LINK_HAS_SLOWCTRL /= "0000") generate