##// END OF EJS Templates
MINI_LFR-WFP_MS-0.1.5.pdb
pellion -
r328:057b3542e4d7 JC
parent child
Show More
@@ -425,7 +425,7 BEGIN -- beh
425 pirq_ms => 6,
425 pirq_ms => 6,
426 pirq_wfp => 14,
426 pirq_wfp => 14,
427 hindex => 2,
427 hindex => 2,
428 top_lfr_version => X"000104") -- aa.bb.cc version
428 top_lfr_version => X"000105") -- aa.bb.cc version
429 PORT MAP (
429 PORT MAP (
430 clk => clk_25,
430 clk => clk_25,
431 rstn => reset,
431 rstn => reset,
@@ -84,7 +84,12 Load <= FFT_Load;
84 PTS => gPTS,
84 PTS => gPTS,
85 HALFPTS => gHALFPTS,
85 HALFPTS => gHALFPTS,
86 inBuf_RWDLY => gInBuf_RWDLY)
86 inBuf_RWDLY => gInBuf_RWDLY)
87 port map(clkm,start,rstn,Drive_Write,Link_Read,Drive_DataIM,Drive_DataRE,FFT_Load,open,FFT_DataIM,FFT_DataRE,FFT_Valid,FFT_Ready);
87 port map(clkm,start,rstn,
88 Drive_Write,Link_Read,
89 Drive_DataIM,Drive_DataRE,
90 FFT_Load,open,
91 FFT_DataIM,FFT_DataRE,
92 FFT_Valid,FFT_Ready);
88
93
89
94
90 LINK : Linker_FFT
95 LINK : Linker_FFT
@@ -92,4 +97,4 Load <= FFT_Load;
92 port map(clkm,rstn,FFT_Ready,FFT_Valid,FifoOUT_Full,FFT_DataRE,FFT_DataIM,Link_Read,Write,ReUse,Data);
97 port map(clkm,rstn,FFT_Ready,FFT_Valid,FifoOUT_Full,FFT_DataRE,FFT_DataIM,Link_Read,Write,ReUse,Data);
93
98
94
99
95 end architecture; No newline at end of file
100 end architecture;
@@ -47,7 +47,7 ENTITY lpp_lfr_apbreg IS
47 pmask : INTEGER := 16#fff#;
47 pmask : INTEGER := 16#fff#;
48 pirq_ms : INTEGER := 0;
48 pirq_ms : INTEGER := 0;
49 pirq_wfp : INTEGER := 1;
49 pirq_wfp : INTEGER := 1;
50 top_lfr_version : STD_LOGIC_VECTOR(23 DOWNTO 0));
50 top_lfr_version : STD_LOGIC_VECTOR(23 DOWNTO 0) := X"000000");
51 PORT (
51 PORT (
52 -- AMBA AHB system signals
52 -- AMBA AHB system signals
53 HCLK : IN STD_ULOGIC;
53 HCLK : IN STD_ULOGIC;
@@ -541,4 +541,4 BEGIN -- beh
541
541
542 run_ms <= reg_sp.config_ms_run;
542 run_ms <= reg_sp.config_ms_run;
543
543
544 END beh;
544 END beh; No newline at end of file
@@ -28,7 +28,7 USE GRLIB.DMA2AHB_Package.ALL;
28
28
29 ENTITY lpp_lfr_ms IS
29 ENTITY lpp_lfr_ms IS
30 GENERIC (
30 GENERIC (
31 Mem_use : INTEGER
31 Mem_use : INTEGER := use_RAM
32 );
32 );
33 PORT (
33 PORT (
34 clk : IN STD_LOGIC;
34 clk : IN STD_LOGIC;
@@ -148,6 +148,10 ARCHITECTURE Behavioral OF lpp_lfr_ms IS
148 -----------------------------------------------------------------------------
148 -----------------------------------------------------------------------------
149 SIGNAL data_time : STD_LOGIC_VECTOR(47 DOWNTO 0);
149 SIGNAL data_time : STD_LOGIC_VECTOR(47 DOWNTO 0);
150
150
151 SIGNAL debug_reg_s : STD_LOGIC_VECTOR(31 DOWNTO 0);
152 SIGNAL dma_valid_s : STD_LOGIC;
153 SIGNAL dma_valid_burst_s : STD_LOGIC;
154
151 BEGIN
155 BEGIN
152
156
153 -----------------------------------------------------------------------------
157 -----------------------------------------------------------------------------
@@ -340,8 +344,8 BEGIN
340
344
341 dma_addr => dma_addr,
345 dma_addr => dma_addr,
342 dma_data => dma_data,
346 dma_data => dma_data,
343 dma_valid => dma_valid,
347 dma_valid => dma_valid_s,
344 dma_valid_burst => dma_valid_burst,
348 dma_valid_burst => dma_valid_burst_s,
345 dma_ren => dma_ren,
349 dma_ren => dma_ren,
346 dma_done => dma_done,
350 dma_done => dma_done,
347
351
@@ -351,7 +355,7 BEGIN
351 ready_matrix_f2 => ready_matrix_f2,
355 ready_matrix_f2 => ready_matrix_f2,
352 error_anticipating_empty_fifo => error_anticipating_empty_fifo,
356 error_anticipating_empty_fifo => error_anticipating_empty_fifo,
353 error_bad_component_error => error_bad_component_error,
357 error_bad_component_error => error_bad_component_error,
354 debug_reg => debug_reg,
358 debug_reg => debug_reg_s,
355 status_ready_matrix_f0_0 => status_ready_matrix_f0_0,
359 status_ready_matrix_f0_0 => status_ready_matrix_f0_0,
356 status_ready_matrix_f0_1 => status_ready_matrix_f0_1,
360 status_ready_matrix_f0_1 => status_ready_matrix_f0_1,
357 status_ready_matrix_f1 => status_ready_matrix_f1,
361 status_ready_matrix_f1 => status_ready_matrix_f1,
@@ -371,4 +375,20 BEGIN
371 matrix_time_f2 => matrix_time_f2
375 matrix_time_f2 => matrix_time_f2
372 );
376 );
373
377
378 dma_valid <= dma_valid_s;
379 dma_valid_burst <= dma_valid_burst_s;
380
381 debug_reg(9 DOWNTO 0) <= debug_reg_s(9 DOWNTO 0);
382 debug_reg(10) <= Head_Empty;
383 debug_reg(11) <= DMA_Read;
384 debug_reg(12) <= Head_Val;
385 debug_reg(13) <= DMA_ack;
386 debug_reg(14) <= dma_ren;
387 debug_reg(15) <= dma_done;
388 debug_reg(16) <= dma_valid_s;
389 debug_reg(17) <= dma_valid_burst_s;
390 debug_reg(31 DOWNTO 18) <= (OTHERS => '0');
391
392
393
374 END Behavioral;
394 END Behavioral;
@@ -200,6 +200,7 BEGIN
200 debug_reg_s(31 DOWNTO 0) <= (OTHERS => '0');
200 debug_reg_s(31 DOWNTO 0) <= (OTHERS => '0');
201
201
202 ELSIF HCLK'EVENT AND HCLK = '1' THEN -- rising clock edge
202 ELSIF HCLK'EVENT AND HCLK = '1' THEN -- rising clock edge
203 debug_reg_s(31 DOWNTO 10) <= (OTHERS => '0');
203
204
204 CASE state IS
205 CASE state IS
205 WHEN IDLE =>
206 WHEN IDLE =>
@@ -214,6 +215,9 BEGIN
214 ready_matrix_f2 <= '0';
215 ready_matrix_f2 <= '0';
215 error_bad_component_error <= '0';
216 error_bad_component_error <= '0';
216 header_select <= '1';
217 header_select <= '1';
218 IF header_val = '1' THEN
219 header_ack <= '1';
220 END IF;
217 IF header_val = '1' AND fifo_empty = '0' AND send_matrix = '1' THEN
221 IF header_val = '1' AND fifo_empty = '0' AND send_matrix = '1' THEN
218 debug_reg_s(5 DOWNTO 4) <= header(1 DOWNTO 0);
222 debug_reg_s(5 DOWNTO 4) <= header(1 DOWNTO 0);
219 debug_reg_s(9 DOWNTO 6) <= header(5 DOWNTO 2);
223 debug_reg_s(9 DOWNTO 6) <= header(5 DOWNTO 2);
@@ -226,9 +230,9 BEGIN
226
230
227 WHEN CHECK_COMPONENT_TYPE =>
231 WHEN CHECK_COMPONENT_TYPE =>
228 debug_reg_s(2 DOWNTO 0) <= "001";
232 debug_reg_s(2 DOWNTO 0) <= "001";
233 header_ack <= '0';
229
234
230 IF header_check_ok = '1' THEN
235 IF header_check_ok = '1' THEN
231 header_ack <= '1';
232 header_send <= '0';
236 header_send <= '0';
233 --
237 --
234 IF component_type = "0000" THEN
238 IF component_type = "0000" THEN
@@ -256,7 +260,6 BEGIN
256 ELSE
260 ELSE
257 error_bad_component_error <= '1';
261 error_bad_component_error <= '1';
258 component_type_pre <= "0000";
262 component_type_pre <= "0000";
259 header_ack <= '1';
260 state <= TRASH_FIFO;
263 state <= TRASH_FIFO;
261 END IF;
264 END IF;
262
265
General Comments 0
You need to be logged in to leave comments. Login now