1 | ----------------------------------------------------------------------------------
|
---|
2 | -- Company: ETH Zurich, Institute for Particle Physics
|
---|
3 | -- Engineer: P. Vogler, Q. Weitzel
|
---|
4 | --
|
---|
5 | -- Create Date: 12 October 2010
|
---|
6 | -- Design Name:
|
---|
7 | -- Module Name: FTM_test4 - Behavioral
|
---|
8 | -- Project Name:
|
---|
9 | -- Target Devices:
|
---|
10 | -- Tool versions:
|
---|
11 | -- Description: Test firmware for FTM board: first of the ethernet interface
|
---|
12 | --
|
---|
13 | --
|
---|
14 | -- Dependencies:
|
---|
15 | --
|
---|
16 | -- Revision:
|
---|
17 | -- Revision 0.01 - File Created
|
---|
18 | -- Additional Comments:
|
---|
19 | --
|
---|
20 | ----------------------------------------------------------------------------------
|
---|
21 |
|
---|
22 | library IEEE;
|
---|
23 | use IEEE.STD_LOGIC_1164.ALL;
|
---|
24 | use IEEE.STD_LOGIC_ARITH.ALL;
|
---|
25 | use IEEE.STD_LOGIC_UNSIGNED.ALL;
|
---|
26 |
|
---|
27 | ---- Uncomment the following library declaration if instantiating
|
---|
28 | ---- any Xilinx primitives in this code.
|
---|
29 | --library UNISIM;
|
---|
30 | --use UNISIM.VComponents.all;
|
---|
31 |
|
---|
32 |
|
---|
33 | -- library FTM_definitions_test3;
|
---|
34 | -- USE FTM_definitions_test3.ftm_array_types.all;
|
---|
35 |
|
---|
36 |
|
---|
37 |
|
---|
38 | entity FTM_test4 is
|
---|
39 | port(
|
---|
40 |
|
---|
41 |
|
---|
42 | -- Clock
|
---|
43 | clk : IN STD_LOGIC; -- external clock from
|
---|
44 | -- oscillator U47
|
---|
45 |
|
---|
46 | -- connection to the WIZnet W5300 ethernet controller
|
---|
47 | -- on IO-Bank 1
|
---|
48 | -------------------------------------------------------------------------------
|
---|
49 | -- W5300 data bus
|
---|
50 | W_D : inout STD_LOGIC_VECTOR(15 downto 0); -- 16-bit data bus to W5300
|
---|
51 |
|
---|
52 |
|
---|
53 | -- W5300 address bus
|
---|
54 | W_A : out STD_LOGIC_VECTOR(9 downto 1); -- there is NO net W_A0 because
|
---|
55 | -- the W5300 is operated in the
|
---|
56 | -- 16-bit mode
|
---|
57 |
|
---|
58 | -- W5300 controll signals
|
---|
59 | -- the signals W_INT, W_RD, W_WR and W_RES also go to testpoints T17
|
---|
60 | -- W_CS is also routed to testpoint JP7
|
---|
61 | W_CS : out STD_LOGIC; -- W5300 chip select
|
---|
62 | W_INT : IN STD_LOGIC; -- interrupt
|
---|
63 | W_RD : out STD_LOGIC; -- read
|
---|
64 | W_WR : out STD_LOGIC; -- write
|
---|
65 | W_RES : out STD_LOGIC -- reset W5300 chip
|
---|
66 |
|
---|
67 | -- W5300 buffer ready indicator
|
---|
68 | -- W_BRDY : in STD_LOGIC_VECTOR(3 downto 0);
|
---|
69 |
|
---|
70 | -- testpoints (T18) associated with the W5300 on IO-bank 1
|
---|
71 | -- W_T : inout STD_LOGIC_VECTOR(3 downto 0);
|
---|
72 |
|
---|
73 |
|
---|
74 |
|
---|
75 | -- SPI Interface
|
---|
76 | -- connection to the EEPROM U36 (AL25L016M) and
|
---|
77 | -- temperature sensors U45, U46, U48 and U49 (all MAX6662)
|
---|
78 | -- on IO-Bank 1
|
---|
79 | -------------------------------------------------------------------------------
|
---|
80 | -- S_CLK : out STD_LOGIC; -- SPI clock
|
---|
81 |
|
---|
82 | -- EEPROM
|
---|
83 | -- MOSI : out STD_LOGIC; -- master out slave in
|
---|
84 | -- MISO : in STD_LOGIC; -- master in slave out
|
---|
85 | -- EE_CS : out STD_LOGIC; -- EEPROM chip select
|
---|
86 |
|
---|
87 | -- temperature sensors U45, U46, U48 and U49
|
---|
88 | -- SIO : inout STD_LOGIC; -- serial IO
|
---|
89 | -- TS_CS : out STD_LOGIC_VECTOR(3 downto 0); -- temperature sensors chip select
|
---|
90 |
|
---|
91 |
|
---|
92 |
|
---|
93 | -- Trigger primitives inputs
|
---|
94 | -- on IO-Bank 2
|
---|
95 | -------------------------------------------------------------------------------
|
---|
96 | -- Trig_Prim_A : in STD_LOGIC_VECTOR(9 downto 0); -- crate 0
|
---|
97 | -- Trig_Prim_B : in STD_LOGIC_VECTOR(9 downto 0); -- crate 1
|
---|
98 | -- Trig_Prim_C : in STD_LOGIC_VECTOR(9 downto 0); -- crate 2
|
---|
99 | -- Trig_Prim_D : in STD_LOGIC_VECTOR(9 downto 0); -- crate 3
|
---|
100 |
|
---|
101 |
|
---|
102 |
|
---|
103 | -- NIM inputs
|
---|
104 | ------------------------------------------------------------------------------
|
---|
105 | -- on IO-Bank 3
|
---|
106 | -- ext_Trig : in STD_LOGIC_VECTOR(2 downto 1); -- external trigger input
|
---|
107 | -- Veto : in STD_LOGIC; -- trigger veto input
|
---|
108 | -- NIM_In : in STD_LOGIC_VECTOR(2 downto 0); -- auxiliary inputs
|
---|
109 |
|
---|
110 | -- on IO-Bank 0
|
---|
111 | -- NIM_In3_GCLK : in STD_LOGIC; -- input with global clock buffer available
|
---|
112 |
|
---|
113 |
|
---|
114 |
|
---|
115 | -- LEDs on IO-Banks 0 and 3
|
---|
116 | -------------------------------------------------------------------------------
|
---|
117 | -- LED_red : out STD_LOGIC_VECTOR(3 downto 0); -- red
|
---|
118 | -- LED_ye : out STD_LOGIC_VECTOR(1 downto 0); -- yellow
|
---|
119 | -- LED_gn : out STD_LOGIC_VECTOR(1 downto 0); -- green
|
---|
120 |
|
---|
121 |
|
---|
122 |
|
---|
123 | -- Clock conditioner LMK03000
|
---|
124 | -- on IO-Bank 3
|
---|
125 | -------------------------------------------------------------------------------
|
---|
126 | -- CLK_Clk_Cond : out STD_LOGIC; -- clock conditioner MICROWIRE interface clock
|
---|
127 | -- LE_Clk_Cond : out STD_LOGIC; -- clock conditioner MICROWIRE interface latch enable
|
---|
128 | -- DATA_Clk_Cond : out STD_LOGIC; -- clock conditioner MICROWIRE interface data
|
---|
129 |
|
---|
130 | -- SYNC_Clk_Cond : out STD_LOGIC; -- clock conditioner global clock synchronization
|
---|
131 | -- LD_Clk_Cond : in STD_LOGIC; -- clock conditioner lock detect
|
---|
132 |
|
---|
133 |
|
---|
134 |
|
---|
135 |
|
---|
136 | -- various RS-485 Interfaces
|
---|
137 | -- on IO-Bank 3
|
---|
138 | -------------------------------------------------------------------------------
|
---|
139 | -- Bus 1: FTU slow control
|
---|
140 | -- Bus1_Tx_En : out STD_LOGIC; -- bus 1: transmitter enable
|
---|
141 | -- Bus1_Rx_En : out STD_LOGIC; -- bus 1: receiver enable
|
---|
142 |
|
---|
143 | -- Bus1_RxD_0 : in STD_LOGIC; -- crate 0
|
---|
144 | -- Bus1_TxD_0 : out STD_LOGIC;
|
---|
145 |
|
---|
146 | -- Bus1_RxD_1 : in STD_LOGIC; -- crate 1
|
---|
147 | -- Bus1_TxD_1 : out STD_LOGIC;
|
---|
148 |
|
---|
149 | -- Bus1_RxD_2 : in STD_LOGIC; -- crate 2
|
---|
150 | -- Bus1_TxD_2 : out STD_LOGIC;
|
---|
151 |
|
---|
152 | -- Bus1_RxD_3 : in STD_LOGIC; -- crate 3
|
---|
153 | -- Bus1_TxD_3 : out STD_LOGIC;
|
---|
154 |
|
---|
155 |
|
---|
156 | -- Bus 2: Trigger-ID to FAD boards
|
---|
157 | -- Bus2_Tx_En : out STD_LOGIC; -- bus 2: transmitter enable
|
---|
158 | -- Bus2_Rx_En : out STD_LOGIC; -- bus 2: receiver enable
|
---|
159 |
|
---|
160 | -- Bus2_RxD_0 : in STD_LOGIC; -- crate 0
|
---|
161 | -- Bus2_TxD_0 : out STD_LOGIC;
|
---|
162 |
|
---|
163 | -- Bus2_RxD_1 : in STD_LOGIC; -- crate 1
|
---|
164 | -- Bus2_TxD_1 : out STD_LOGIC;
|
---|
165 |
|
---|
166 | -- Bus2_RxD_2 : in STD_LOGIC; -- crate 2
|
---|
167 | -- Bus2_TxD_2 : out STD_LOGIC;
|
---|
168 |
|
---|
169 | -- Bus2_RxD_3 : in STD_LOGIC; -- crate 3
|
---|
170 | -- Bus2_TxD_3 : out STD_LOGIC;
|
---|
171 |
|
---|
172 |
|
---|
173 | -- auxiliary access
|
---|
174 | -- Aux_Rx_D : in STD_LOGIC; --
|
---|
175 | -- Aux_Tx_D : out STD_LOGIC; --
|
---|
176 | -- Aux_Rx_En : out STD_LOGIC; -- Rx- and Tx enable
|
---|
177 | -- Aux_Tx_En : out STD_LOGIC; -- also for auxiliary Trigger-ID
|
---|
178 |
|
---|
179 |
|
---|
180 | -- auxiliary Trigger-ID (i.e. to send the Trigger-ID to the counting hut/house/container)
|
---|
181 | -- TrID_Rx_D : in STD_LOGIC; --
|
---|
182 | -- TrID_Tx_D : out STD_LOGIC; --
|
---|
183 |
|
---|
184 |
|
---|
185 | -- Crate-Resets
|
---|
186 | -- on IO-Bank 3
|
---|
187 | -------------------------------------------------------------------------------
|
---|
188 | -- Crate_Res0 : out STD_LOGIC; --
|
---|
189 | -- Crate_Res1 : out STD_LOGIC; --
|
---|
190 | -- Crate_Res2 : out STD_LOGIC; --
|
---|
191 | -- Crate_Res3 : out STD_LOGIC; --
|
---|
192 |
|
---|
193 |
|
---|
194 | -- Busy signals from the FAD boards
|
---|
195 | -- on IO-Bank 3
|
---|
196 | -------------------------------------------------------------------------------
|
---|
197 | -- Busy0 : in STD_LOGIC; --
|
---|
198 | -- Busy1 : in STD_LOGIC; --
|
---|
199 | -- Busy2 : in STD_LOGIC; --
|
---|
200 | -- Busy3 : in STD_LOGIC; --
|
---|
201 |
|
---|
202 |
|
---|
203 |
|
---|
204 | -- NIM outputs
|
---|
205 | -- on IO-Bank 0
|
---|
206 | -- LVDS output at the FPGA followed by LVDS to NIM conversion stage
|
---|
207 | -------------------------------------------------------------------------------
|
---|
208 | -- calibration
|
---|
209 | -- Cal_NIM1_p : out STD_LOGIC; -- Cal_NIM1+
|
---|
210 | -- Cal_NIM1_n : out STD_LOGIC; -- Cal_NIM1-
|
---|
211 | -- Cal_NIM2_p : out STD_LOGIC; -- Cal_NIM2+
|
---|
212 | -- Cal_NIM2_n : out STD_LOGIC; -- Cal_NIM2-
|
---|
213 |
|
---|
214 | -- auxiliarry / spare NIM outputs
|
---|
215 | -- NIM_Out0_p : out STD_LOGIC; -- NIM_Out0+
|
---|
216 | -- NIM_Out0_n : out STD_LOGIC; -- NIM_Out0-
|
---|
217 | -- NIM_Out1_p : out STD_LOGIC; -- NIM_Out1+
|
---|
218 | -- NIM_Out1_n : out STD_LOGIC; -- NIM_Out1-
|
---|
219 |
|
---|
220 |
|
---|
221 |
|
---|
222 | -- fast control signal outputs
|
---|
223 | -- LVDS output at the FPGA followed by LVDS to NIM conversion stage
|
---|
224 | -- conversion stage
|
---|
225 | -------------------------------------------------------------------------------
|
---|
226 | -- RES_p : out STD_LOGIC; -- RES+ Reset
|
---|
227 | -- RES_n : out STD_LOGIC; -- RES- IO-Bank 0
|
---|
228 |
|
---|
229 | -- TRG_p : out STD_LOGIC; -- TRG+ Trigger
|
---|
230 | -- TRG_n : out STD_LOGIC; -- TRG- IO-Bank 0
|
---|
231 |
|
---|
232 | -- TIM_Run_p : out STD_LOGIC; -- TIM_Run+ Time Marker
|
---|
233 | -- TIM_Run_n : out STD_LOGIC; -- TIM_Run- IO-Bank 2
|
---|
234 | -- TIM_Sel : out STD_LOGIC -- Time Marker selector on
|
---|
235 | -- IO-Bank 2
|
---|
236 |
|
---|
237 | -- CLD_FPGA : out STD_LOGIC; -- DRS-Clock feedback into FPGA
|
---|
238 |
|
---|
239 |
|
---|
240 |
|
---|
241 | -- LVDS calibration outputs
|
---|
242 | -- on IO-Bank 0
|
---|
243 | -------------------------------------------------------------------------------
|
---|
244 | -- to connector J13
|
---|
245 | -- Cal_0_p : out STD_LOGIC;
|
---|
246 | -- Cal_0_n : out STD_LOGIC;
|
---|
247 | -- Cal_1_p : out STD_LOGIC;
|
---|
248 | -- Cal_1_n : out STD_LOGIC;
|
---|
249 | -- Cal_2_p : out STD_LOGIC;
|
---|
250 | -- Cal_2_n : out STD_LOGIC;
|
---|
251 | -- Cal_3_p : out STD_LOGIC;
|
---|
252 | -- Cal_3_n : out STD_LOGIC;
|
---|
253 |
|
---|
254 | -- to connector J12
|
---|
255 | -- Cal_4_p : out STD_LOGIC;
|
---|
256 | -- Cal_4_n : out STD_LOGIC;
|
---|
257 | -- Cal_5_p : out STD_LOGIC;
|
---|
258 | -- Cal_5_n : out STD_LOGIC;
|
---|
259 | -- Cal_6_p : out STD_LOGIC;
|
---|
260 | -- Cal_6_n : out STD_LOGIC;
|
---|
261 | -- Cal_7_p : out STD_LOGIC;
|
---|
262 | -- Cal_7_n : out STD_LOGIC;
|
---|
263 |
|
---|
264 |
|
---|
265 | -- Testpoints
|
---|
266 | -------------------------------------------------------------------------------
|
---|
267 | -- TP : inout STD_LOGIC_VECTOR(32 downto 0)
|
---|
268 | -- TP_in : in STD_LOGIC_VECTOR(34 downto 33); -- input only
|
---|
269 |
|
---|
270 | -- Board ID - inputs
|
---|
271 | -- local board-ID "solder programmable"
|
---|
272 | -- all on 'input only' pins
|
---|
273 | -------------------------------------------------------------------------------
|
---|
274 | -- brd_id : in STD_LOGIC_VECTOR(7 downto 0) -- input only
|
---|
275 | );
|
---|
276 | end FTM_test4;
|
---|
277 |
|
---|
278 |
|
---|
279 | architecture Behavioral of FTM_test4 is
|
---|
280 |
|
---|
281 | -- dcm 40 MHz -> 50 MHz
|
---|
282 | component FTM_test4_dcm is
|
---|
283 | port ( CLKIN_IN : in std_logic;
|
---|
284 | CLKFX_OUT : out std_logic;
|
---|
285 | CLKIN_IBUFG_OUT : out std_logic;
|
---|
286 | CLK0_OUT : out std_logic);
|
---|
287 | end component;
|
---|
288 |
|
---|
289 | -- w5300
|
---|
290 | component w5300_modul IS
|
---|
291 | PORT(
|
---|
292 | clk : IN std_logic;
|
---|
293 | wiz_reset : OUT std_logic;
|
---|
294 | addr : OUT std_logic_vector (9 DOWNTO 0); -- Address 0 unused
|
---|
295 | data : INOUT std_logic_vector (15 DOWNTO 0);
|
---|
296 | cs : OUT std_logic;
|
---|
297 | wr : OUT std_logic;
|
---|
298 | led : OUT std_logic_vector (7 DOWNTO 0);
|
---|
299 | rd : OUT std_logic;
|
---|
300 | int : IN std_logic;
|
---|
301 | write_length : IN std_logic_vector (16 DOWNTO 0);
|
---|
302 | ram_start_addr : IN std_logic_vector (13 DOWNTO 0);
|
---|
303 | ram_data : IN std_logic_vector (15 DOWNTO 0);
|
---|
304 | ram_addr : OUT std_logic_vector (13 DOWNTO 0);
|
---|
305 | data_valid : IN std_logic;
|
---|
306 | data_valid_ack : OUT std_logic;
|
---|
307 | busy : OUT std_logic;
|
---|
308 | write_header_flag, write_end_flag : IN std_logic;
|
---|
309 | fifo_channels : IN std_logic_vector (3 downto 0);
|
---|
310 | s_trigger : OUT std_logic;
|
---|
311 | new_config : OUT std_logic;
|
---|
312 | config_started : in std_logic;
|
---|
313 | config_addr : out std_logic_vector (7 downto 0);
|
---|
314 | config_data : inout std_logic_vector (15 downto 0);
|
---|
315 | config_wr_en : out std_logic;
|
---|
316 | config_rd_en : out std_logic;
|
---|
317 | -- --
|
---|
318 | config_rw_ack, config_rw_ready : in std_logic;
|
---|
319 | -- --
|
---|
320 | config_busy : in std_logic
|
---|
321 | );
|
---|
322 | end component;
|
---|
323 |
|
---|
324 |
|
---|
325 | signal CLK_50_internal : STD_LOGIC;
|
---|
326 | signal W5300_address : std_logic_vector (9 downto 0);
|
---|
327 |
|
---|
328 | begin
|
---|
329 |
|
---|
330 | Inst_FTM_test4_dcm : FTM_test4_dcm
|
---|
331 | port map(
|
---|
332 | CLKIN_IN => clk,
|
---|
333 | CLKFX_OUT => CLK_50_internal,
|
---|
334 | CLKIN_IBUFG_OUT => open,
|
---|
335 | CLK0_OUT => open
|
---|
336 | );
|
---|
337 |
|
---|
338 |
|
---|
339 |
|
---|
340 | I_main_ethernet : w5300_modul
|
---|
341 | -- GENERIC MAP (
|
---|
342 | -- RAM_ADDR_WIDTH => RAMADDRWIDTH64b+2
|
---|
343 | -- )
|
---|
344 | PORT MAP (
|
---|
345 | clk => CLK_50_internal,
|
---|
346 | wiz_reset => W_RES, --
|
---|
347 | addr => W5300_address, -- Address 0 ?? shift_reg <= shift_reg(30 downto 0) & shift_reg(31);
|
---|
348 | data => W_D, --
|
---|
349 | cs => W_CS, --
|
---|
350 | wr => W_WR, --
|
---|
351 | led => open, --
|
---|
352 | rd => W_RD, --
|
---|
353 | int => W_INT, --
|
---|
354 | write_length => "00000000000000001", --
|
---|
355 | ram_start_addr => "00000000000000", --
|
---|
356 | ram_data => "0000000000000000", --
|
---|
357 | ram_addr => open, --
|
---|
358 | data_valid => '0',
|
---|
359 | data_valid_ack => open, --
|
---|
360 | busy => open, --
|
---|
361 | write_header_flag => '0',
|
---|
362 | write_end_flag => '0',
|
---|
363 | fifo_channels => "0000", --
|
---|
364 | s_trigger => open, --
|
---|
365 | new_config => open, --
|
---|
366 | config_started => '0',
|
---|
367 | config_addr => open, --
|
---|
368 | config_data => open, -- inout open ??
|
---|
369 | config_wr_en => open, --
|
---|
370 | config_rd_en => open, --
|
---|
371 | config_busy => '0', --
|
---|
372 |
|
---|
373 | config_rw_ack => '0',
|
---|
374 | config_rw_ready => '0'
|
---|
375 |
|
---|
376 | -- denable => denable,
|
---|
377 | -- dwrite_enable => dwrite_enable,
|
---|
378 | -- sclk_enable => sclk_enable
|
---|
379 | );
|
---|
380 |
|
---|
381 | W_A <= W5300_address (9 downto 1);
|
---|
382 |
|
---|
383 | --FTM main state machine
|
---|
384 | -- FTM_test4_Registers: process (clk_250M_sig)
|
---|
385 | -- begin
|
---|
386 | -- if Rising_edge(clk_250M_sig) then
|
---|
387 | -- if (config_puls_cnt < 2000) then
|
---|
388 | -- config_puls_cnt <= config_puls_cnt + 1;
|
---|
389 | -- end if;
|
---|
390 | --
|
---|
391 | -- if (config_puls_cnt < 1000) then
|
---|
392 | -- reset_sig <= '0';
|
---|
393 | -- elsif ((config_puls_cnt > 999) and (config_puls_cnt < 1900)) then
|
---|
394 | -- reset_sig <= '1';
|
---|
395 | -- else
|
---|
396 | -- reset_sig <= '0';
|
---|
397 | -- end if;
|
---|
398 | --
|
---|
399 | -- end if;
|
---|
400 | -- end process FTM_test4_Registers;
|
---|
401 |
|
---|
402 | end Behavioral;
|
---|
403 |
|
---|
404 |
|
---|