source: firmware/FTM/ftm_definitions.vhd@ 11406

Last change on this file since 11406 was 11241, checked in by weitzel, 13 years ago
FTM: changes in library file: firmware ID increased to v2 and CMD_CONFIG_FTU added
File size: 24.5 KB
Line 
1----------------------------------------------------------------------------------
2-- Company: ETH Zurich, Institute for Particle Physics
3-- Engineer: Q. Weitzel
4--
5-- Create Date: February 2011
6-- Design Name:
7-- Module Name: ftm_definitions
8-- Project Name:
9-- Target Devices:
10-- Tool versions:
11-- Description: library file for FTM design
12--
13-- Dependencies:
14--
15-- Revision:
16-- Revision 0.01 - File Created
17-- Additional Comments:
18--
19-- modified: Patrick Vogler, February 17 2011
20-- merged with library file from Dortmund, Q. Weitzel, February 24, 2011
21--
22-- kw 25.02.: changes for HDL-Designer (use FACT_FTM.lib.ftm_...),
23-- DD_BLOCK_SIZE added (set to 0x008 for first tests), SD_ADDR_coin_win_[p,c] defined
24--
25-- modified: Quirin Weitzel, March 14 2011
26-- second merger with library file from dortmund (changes below)
27-- kw 01.03.: added array sd_block_default_ftu_active_list (type and defaults)
28-- kw 02.03.: added DD_BLOCK_SIZE_GENERAL (on-time counter + temperatures), changed DD_BLOCK_SIZE to 0x010 for testing
29-- kw 03.03.: added FTM_HEADER_LENGTH
30--
31-- modified: Quirin Weitzel, March 14 2011
32-- third merger with library file from dortmund (changes below)
33-- kw 22.03.: added FTU_ERROR_LENGTH
34-- kw 30.03.: added CMD_AUTOSEND, PAR_AUTOSEND_EA, PAR_AUTOSEND_DA
35--
36---kw 11.04.: added SD_ADDR_ftu_prescaling_0
37--
38-- modified: Quirin Weitzel, April 20 2011
39-- next merger with library file from dortmund (changes below)
40-- kw 14.04.: added sensor_array_type (temperature sensors)
41-- changed CMD_AUTOSEND to X"0040"
42-- added "start run / take X events", "stop run", "crate reset"
43-- kw 18.04.: removed PAR_READ_DD_ADDR, changed PAR_WRITE_SD_ADDR to 0x0004
44-- added FTM_PACKAGE_START and FTM_PACKAGE_END
45-- increased DD_BLOCK_SIZE and DD_BLOCK_SIZE_GENERAL by 1 (64 bit on-time counter)
46-- changed FTM_HEADER_LENGTH to 0x0E
47-- kw 20.04.: added "package types", SD_SINGLE_WORD_SIZE
48--
49-- kw 28.04.: changed SD_SINGLE_WORD_SIZE to X"002", added W5300_S0_KPALVTR (keep alive)
50--
51-- modified: Patrick Vogler, May 18 2011
52-- constants for light pulser and timing counter added
53--
54-- modified: Patrick Vogler, May 26 2011
55-- constants for a simpler Lightpulser Interface "Basic Version" added
56--
57-- qw 16.06.: network settings for La Palma added
58--
59-- qw 29.06.: changeover to firmware v2 -> FTU reconfiguration possible during run
60--
61-- kw 10.06.: added CMD_CONFIG_FTU
62--
63----------------------------------------------------------------------------------
64
65
66library IEEE;
67use IEEE.STD_LOGIC_1164.all;
68use IEEE.STD_LOGIC_ARITH.ALL;
69use IEEE.STD_LOGIC_UNSIGNED.ALL;
70use IEEE.NUMERIC_STD.ALL;
71
72package ftm_array_types is
73
74 -- !!! some arrays are also defined in the ftm_constants package !!!
75
76 -- data arrays for a single FTU
77 type FTU_enable_array_type is array (0 to 3) of std_logic_vector(15 downto 0);
78 type FTU_dac_array_type is array (0 to 4) of std_logic_vector(15 downto 0);
79 type FTU_rate_array_type is array (0 to 4) of std_logic_vector(31 downto 0);
80 type active_FTU_array_type is array (0 to 3) of std_logic_vector(15 downto 0);
81 type FTU_answer_array_type is array (0 to 3) of integer range 0 to 10;
82
83 -- data array for clock conditioner interface
84 type clk_cond_array_type is array (0 to 14) of std_logic_vector (31 downto 0);
85
86 -- network array types
87 type ip_type is array (0 to 3) of integer;
88 type mac_type is array (0 to 2) of std_logic_vector (15 downto 0);
89
90 -- Temperature Sensor interface
91 type sensor_array_type is array (0 to 3) of integer range 0 to 2**16 - 1;
92
93end ftm_array_types;
94
95
96library IEEE;
97use IEEE.STD_LOGIC_1164.all;
98use IEEE.STD_LOGIC_ARITH.ALL;
99use IEEE.STD_LOGIC_UNSIGNED.ALL;
100-- for HDL-Designer
101-- LIBRARY FACT_FTM_lib;
102-- use FACT_FTM_lib.ftm_array_types.all;
103library ftm_definitions;
104use ftm_definitions.ftm_array_types.all;
105use IEEE.NUMERIC_STD.ALL;
106use ieee.math_real.all;
107
108package ftm_constants is
109
110 -- !!! many constants depend on each other or are defined 2x with different types !!!
111
112 constant NO_OF_CRATES : integer := 4;
113 constant NO_OF_FTUS_PER_CRATE : integer := 10;
114 constant NO_OF_FTU_ENABLE_REG : integer := 4;
115 constant NO_OF_FTU_DAC_REG : integer := 5;
116
117 --internal FPGA clock frequencies
118 constant INT_CLK_FREQUENCY_1 : integer := 50000000; -- 50MHz
119 constant INT_CLK_FREQUENCY_2 : integer := 250000000; -- 250MHz
120 constant LOW_FREQUENCY : integer := 1000000; -- has to be smaller than INT_CLK_FREQUENCY_1
121 --constant SCALER_FREQ_DIVIDER : integer := 10000; -- for simulation, should normally be 1
122 constant SCALER_FREQ_DIVIDER : integer := 1;
123
124 --FTM address and firmware ID
125 constant FTM_ADDRESS : std_logic_vector(7 downto 0) := "11000000"; -- 192
126 constant FIRMWARE_ID : std_logic_vector(7 downto 0) := "00000010"; -- firmware version
127
128 --communication with FTUs
129 constant FTU_RS485_BAUD_RATE : integer := 250000; -- bits / sec in our case
130 constant FTU_RS485_TIMEOUT : integer := (INT_CLK_FREQUENCY_1 * 2) / 1000; -- 2ms @ 50MHz (100000 clk periods)
131 --constant FTU_RS485_BAUD_RATE : integer := 10000000; -- for simulation
132 --constant FTU_RS485_TIMEOUT : integer := (INT_CLK_FREQUENCY_1 * 2) / 40000; -- for simulation
133 constant FTU_RS485_NO_OF_RETRY : integer range 0 to 2 := 2; -- in case of timeout, !!! HAS TO BE < 3 !!!
134 constant FTU_RS485_BLOCK_WIDTH : integer := 224; -- 28 byte protocol
135 constant FTU_RS485_START_DELIM : std_logic_vector(7 downto 0) := "01000000"; -- start delimiter "@"
136
137 --broadcast to FADs
138 constant FAD_RS485_BAUD_RATE : integer := 250000; -- bits / sec in our case
139 constant FAD_RS485_BLOCK_WIDTH : integer := 56; -- 7 byte trigger ID
140
141 --CRC setup
142 constant CRC_POLYNOMIAL : std_logic_vector(7 downto 0) := "00000111"; -- 8-CCITT
143 constant CRC_INIT_VALUE : std_logic_vector(7 downto 0) := "11111111";
144
145 --DNA identifier for simulation
146 constant DNA_FOR_SIM : bit_vector := X"01710000F0000501";
147
148 -- Clock conditioner (LMK03000, National semiconductor) interface
149 constant MICROWIRE_CLK_FREQUENCY : integer := 2000000; -- 2 MHz
150 -- value to be written to R0 of the LMK03000 to perform a reset, see LMK03000 datasheet
151 constant LMK03000_Reset : std_logic_vector (31 downto 0) := x"80000000";
152 constant LMK03000_REGISTER_WIDTH : integer := 32;
153 constant LMK03000_REGISTER_COUNT : integer := 15; -- number of registers to be programmed in the LMK03000 including reset
154 constant cc_R2_const : std_logic_vector := X"00000102"; -- unused
155 constant cc_R3_const : std_logic_vector := X"00000103"; -- channels
156 constant cc_R4_const : std_logic_vector := X"00000104";
157 constant cc_R5_const : std_logic_vector := X"00000105";
158 constant cc_R6_const : std_logic_vector := X"00000106";
159 constant cc_R7_const : std_logic_vector := X"00000107";
160
161 -- network settings Dortmund
162 -- constant MAC_ADDRESS : mac_type := (X"0011", X"9561", X"95A0");
163 -- constant NETMASK : ip_type := (255, 255, 255, 0);
164 -- constant IP_ADDRESS : ip_type := (129, 217, 160, 118);
165 -- constant GATEWAY : ip_type := (129, 217, 160, 1);
166 -- constant FIRST_PORT : integer := 5000;
167
168 -- network settings Zuerich, for backup/test FTM
169 -- constant MAC_ADDRESS : mac_type := (X"FAC7", X"0FAD", X"1101");
170 -- constant NETMASK : ip_type := (255, 255, 248, 0);
171 -- constant IP_ADDRESS : ip_type := (192, 33, 99, 246); --registered as ftmboard1.ethz.ch
172 -- constant GATEWAY : ip_type := (192, 33, 96, 1);
173 -- constant FIRST_PORT : integer := 5000;
174
175 -- network settings La Palma (internal subnet), for FTM in camera
176 constant MAC_ADDRESS : mac_type := (X"FAC7", X"1FAD", X"1102");
177 constant NETMASK : ip_type := (255, 255, 255, 0);
178 constant IP_ADDRESS : ip_type := (10, 0, 100, 140);
179 constant GATEWAY : ip_type := (10, 0, 100, 1);
180 constant FIRST_PORT : integer := 5000;
181
182 -- W5300 settings
183 constant W5300_S_INC : std_logic_vector(6 downto 0) := "1000000"; -- socket address offset
184 -- W5300 Registers
185 constant W5300_BASE_ADR : std_logic_vector (9 downto 0) := (others => '0');
186 constant W5300_MR : std_logic_vector (9 downto 0) := W5300_BASE_ADR + X"0";
187 constant W5300_IR : std_logic_vector (9 downto 0) := W5300_BASE_ADR + X"2";
188 constant W5300_IMR : std_logic_vector (9 downto 0) := W5300_BASE_ADR + X"4";
189 constant W5300_SHAR : std_logic_vector (9 downto 0) := W5300_BASE_ADR + X"8";
190 constant W5300_GAR : std_logic_vector (9 downto 0) := W5300_BASE_ADR + X"10";
191 constant W5300_SUBR : std_logic_vector (9 downto 0) := W5300_BASE_ADR + X"14";
192 constant W5300_SIPR : std_logic_vector (9 downto 0) := W5300_BASE_ADR + X"18";
193 constant W5300_RTR : std_logic_vector (9 downto 0) := W5300_BASE_ADR + X"1C";
194 constant W5300_RCR : std_logic_vector (9 downto 0) := W5300_BASE_ADR + X"1E";
195 constant W5300_TMS01R : std_logic_vector (9 downto 0) := W5300_BASE_ADR + X"20";
196 constant W5300_TMS23R : std_logic_vector (9 downto 0) := W5300_BASE_ADR + X"22";
197 constant W5300_TMS45R : std_logic_vector (9 downto 0) := W5300_BASE_ADR + X"24";
198 constant W5300_TMS67R : std_logic_vector (9 downto 0) := W5300_BASE_ADR + X"26";
199 constant W5300_RMS01R : std_logic_vector (9 downto 0) := W5300_BASE_ADR + X"28";
200 constant W5300_RMS23R : std_logic_vector (9 downto 0) := W5300_BASE_ADR + X"2A";
201 constant W5300_RMS45R : std_logic_vector (9 downto 0) := W5300_BASE_ADR + X"2C";
202 constant W5300_RMS67R : std_logic_vector (9 downto 0) := W5300_BASE_ADR + X"2E";
203 constant W5300_MTYPER : std_logic_vector (9 downto 0) := W5300_BASE_ADR + X"30";
204 constant W5300_S0_MR : std_logic_vector (9 downto 0) := W5300_BASE_ADR + "1000000000" + X"0";
205 constant W5300_S0_CR : std_logic_vector (9 downto 0) := W5300_BASE_ADR + "1000000000" + X"2";
206 constant W5300_S0_IMR : std_logic_vector (9 downto 0) := W5300_BASE_ADR + "1000000000" + X"4";
207 constant W5300_S0_IR : std_logic_vector (9 downto 0) := W5300_BASE_ADR + "1000000000" + X"6";
208 constant W5300_S0_SSR : std_logic_vector (9 downto 0) := W5300_BASE_ADR + "1000000000" + X"8";
209 constant W5300_S0_PORTR : std_logic_vector (9 downto 0) := W5300_BASE_ADR + "1000000000" + X"A";
210 constant W5300_S0_DPORTR : std_logic_vector (9 downto 0) := W5300_BASE_ADR + "1000000000" + X"12";
211 constant W5300_S0_DIPR : std_logic_vector (9 downto 0) := W5300_BASE_ADR + "1000000000" + X"14";
212 constant W5300_S0_KPALVTR : std_logic_vector (9 downto 0) := W5300_BASE_ADR + "1000000000" + X"1A";
213 constant W5300_S0_TX_WRSR : std_logic_vector (9 downto 0) := W5300_BASE_ADR + "1000000000" + X"20";
214 constant W5300_S0_TX_FSR : std_logic_vector (9 downto 0) := W5300_BASE_ADR + "1000000000" + X"24";
215 constant W5300_S0_RX_RSR : std_logic_vector (9 downto 0) := W5300_BASE_ADR + "1000000000" + X"28";
216 constant W5300_S0_TX_FIFOR : std_logic_vector (9 downto 0) := W5300_BASE_ADR + "1000000000" + X"2E";
217 constant W5300_S0_RX_FIFOR : std_logic_vector (9 downto 0) := W5300_BASE_ADR + "1000000000" + X"30";
218 -- End W5300 registers
219 constant W5300_TX_FIFO_SIZE_8B : integer := 65536; -- Socket TX FIFO-Size in Bytes
220 constant W5300_TX_FIFO_SIZE : integer := (W5300_TX_FIFO_SIZE_8B / 2); -- Socket TX FIFO-Size in 16 Bit Words
221 constant W5300_LAST_SOCKET : integer := 0;
222
223 -- Commands
224 constant CMD_START_DELIMITER : std_logic_vector := X"0040"; -- "@"
225 constant CMD_TLED : std_logic_vector := X"C000"; -- only a test
226 constant CMD_READ : std_logic_vector := X"0001";
227 constant PAR_READ_SD : std_logic_vector := X"0001"; -- read static data block
228 constant PAR_READ_DD : std_logic_vector := X"0002"; -- read dynamic data block
229 -- only for debugging: data_block (0) = ADDR
230 constant PAR_READ_SD_ADDR : std_logic_vector := X"0004"; -- read from address in static data block
231 constant CMD_WRITE : std_logic_vector := X"0002";
232 constant PAR_WRITE_SD : std_logic_vector := X"0001"; -- write static data block
233 -- only for debugging: data_block (0) = ADDR, data_block (1) = DATA
234 constant PAR_WRITE_SD_ADDR : std_logic_vector := X"0004"; -- write to address in static data ram
235 -- ping all FTUs
236 constant CMD_PING : std_logic_vector := X"0010"; -- ping all FTUs
237 -- turn automatic sending of dd-block and ftu-error-list on or off
238 constant CMD_AUTOSEND : std_logic_vector := X"0040";
239 constant PAR_AUTOSEND_EA : std_logic_vector := X"0001"; -- enable automatic sending
240 constant PAR_AUTOSEND_DA : std_logic_vector := X"0000"; -- disable automatic sending
241
242 -- start run / take X events
243 constant CMD_START : std_logic_vector := X"0004";
244 constant PAR_START_RUN : std_logic_vector := X"0001";
245 constant PAR_START_X_EVNTS : std_logic_vector := X"0002";
246
247 -- stop run
248 constant CMD_STOP : std_logic_vector := X"0008";
249
250 -- crate reset
251 constant CMD_CRESET : std_logic_vector := X"0020";
252 constant RESET_TIME : integer := 50; -- hold reset line for 1us (@ 50MHz clk)
253
254 -- configure one ftu
255 constant CMD_CONFIG_FTU : std_logic_vector := X"0080";
256
257 -- start and end of package
258 constant FTM_PACKAGE_START : std_logic_vector := X"FB01";
259 constant FTM_PACKAGE_END : std_logic_vector := X"04FE";
260
261 -- package types
262 constant FTM_PACKAGE_TYPE_SD : std_logic_vector := X"0001";
263 constant FTM_PACKAGE_TYPE_DD : std_logic_vector := X"0002";
264 constant FTM_PACKAGE_TYPE_FTU_LIST : std_logic_vector := X"0003";
265 constant FTM_PACKAGE_TYPE_FTU_ERR : std_logic_vector := X"0004";
266 constant FTM_PACKAGE_TYPE_SD_WORD : std_logic_vector := X"0005";
267
268 -- state types
269 constant FTM_STATE_IDLE : std_logic_vector := X"0001";
270 constant FTM_STATE_CFG : std_logic_vector := X"0002";
271 constant FTM_STATE_RUN : std_logic_vector := X"0003";
272 constant FTM_STATE_CALIB : std_logic_vector := X"0004";
273
274 -- header length of data packages
275 constant FTM_HEADER_LENGTH : std_logic_vector (7 DOWNTO 0) := X"0E";
276
277 -- FTU error message
278 constant FTU_ERROR_LENGTH : std_logic_vector (11 downto 0) := X"01D"; --(number of unsuccessful calls) + (28 * data) = 29
279
280 -- FTU-list parameters
281 constant FL_BLOCK_SIZE : std_logic_vector := X"0F9"; -- FTU-list size -- 9 + (40 * 6) = 249
282 constant NO_OF_FTU_LIST_REG : integer := 6;
283 constant FTU_LIST_RAM_OFFSET : integer := 16#009#;
284 constant FTU_LIST_RAM_ADDR_WIDTH : integer := 12;
285
286 constant NO_OF_DD_RAM_REG : integer := 12;
287
288 -- Static data block
289 constant SD_BLOCK_SIZE_GENERAL : integer := 32; -- X"20" -- static data block size without FTU data
290 constant SD_FTU_BASE_ADDR : std_logic_vector := X"020"; -- beginning of FTU data
291 constant STATIC_RAM_CFG_FTU_OFFSET : integer := 16#020#;
292 constant STATIC_RAM_ADDR_WIDTH : integer := 12;
293 constant SD_FTU_DATA_SIZE : integer := 10; -- X"00A" -- size of one FTU data block
294 constant SD_FTU_NUM : integer := 40; -- number of FTUs
295 constant SD_FTU_ACTIVE_BASE_ADDR : std_logic_vector := X"1B0"; -- beginning of active FTU lists
296 constant SD_FTU_ACTIVE_NUM : integer := 4; -- number of active FTU lists (cr0 to cr3)
297 constant SD_BLOCK_SIZE : std_logic_vector (11 downto 0) := X"1B4"; -- total size of static data block
298 constant SD_SINGLE_WORD_SIZE : std_logic_vector := X"002";
299
300 -- dynamic data block
301 constant DD_BLOCK_SIZE : std_logic_vector (11 downto 0) := X"1E8"; -- 8 + (40 * 12) = 0x1E8 --total size of dynamic data block
302 constant DD_BLOCK_SIZE_GENERAL : integer := 8; -- dynamic block size without FTU data
303 constant DYNAMIC_RAM_ADDR_WIDTH : integer := 12;
304
305 -- addresses in static data block
306 constant SD_ADDR_general_settings : std_logic_vector := X"000";
307 constant SD_ADDR_led : std_logic_vector := X"001";
308 constant SD_ADDR_lp_pt_freq : std_logic_vector := X"002";
309 constant SD_ADDR_lp_pt_ratio : std_logic_vector := X"003";
310 constant SD_ADDR_lp1_amplitude : std_logic_vector := X"004";
311 constant SD_ADDR_lp2_amplitude : std_logic_vector := X"005";
312 constant SD_ADDR_lp1_delay : std_logic_vector := X"006";
313 constant SD_ADDR_lp2_delay : std_logic_vector := X"007";
314 constant SD_ADDR_coin_n_p : std_logic_vector := X"008";
315 constant SD_ADDR_coin_n_c : std_logic_vector := X"009";
316 constant SD_ADDR_trigger_delay : std_logic_vector := X"00A";
317 constant SD_ADDR_timemarker_delay : std_logic_vector := X"00B";
318 constant SD_ADDR_dead_time : std_logic_vector := X"00C";
319 constant SD_ADDR_cc_R0_HI : std_logic_vector := X"00D";
320 constant SD_ADDR_cc_R0_LO : std_logic_vector := X"00E";
321 constant SD_ADDR_cc_R1_HI : std_logic_vector := X"00F";
322 constant SD_ADDR_cc_R1_LO : std_logic_vector := X"010";
323 constant SD_ADDR_cc_R8_HI : std_logic_vector := X"011";
324 constant SD_ADDR_cc_R8_LO : std_logic_vector := X"012";
325 constant SD_ADDR_cc_R9_HI : std_logic_vector := X"013";
326 constant SD_ADDR_cc_R9_LO : std_logic_vector := X"014";
327 constant SD_ADDR_cc_R11_HI : std_logic_vector := X"015";
328 constant SD_ADDR_cc_R11_LO : std_logic_vector := X"016";
329 constant SD_ADDR_cc_R13_HI : std_logic_vector := X"017";
330 constant SD_ADDR_cc_R13_LO : std_logic_vector := X"018";
331 constant SD_ADDR_cc_R14_HI : std_logic_vector := X"019";
332 constant SD_ADDR_cc_R14_LO : std_logic_vector := X"01A";
333 constant SD_ADDR_cc_R15_HI : std_logic_vector := X"01B";
334 constant SD_ADDR_cc_R15_LO : std_logic_vector := X"01C";
335 constant SD_ADDR_coin_win_p : std_logic_vector := X"01D";
336 constant SD_ADDR_coin_win_c : std_logic_vector := X"01E";
337 constant SD_ADDR_ftu_prescaling_0 : std_logic_vector := X"029";
338 constant SD_ADDR_ftu_active_cr0 : std_logic_vector := X"1B0";
339 constant SD_ADDR_ftu_active_cr1 : std_logic_vector := X"1B1";
340 constant SD_ADDR_ftu_active_cr2 : std_logic_vector := X"1B2";
341 constant SD_ADDR_ftu_active_cr3 : std_logic_vector := X"1B3";
342 constant STATIC_RAM_ACT_FTU_OFFSET : integer := 16#1B0#;
343
344
345 -- arrays for default values
346 type sd_block_default_array_type is array (0 to (SD_BLOCK_SIZE_GENERAL - 1)) of std_logic_vector (15 downto 0);
347 type sd_block_ftu_default_array_type is array (0 to (SD_FTU_DATA_SIZE - 1)) of std_logic_vector (15 downto 0);
348 type sd_block_default_ftu_active_list_type is array (0 to (SD_FTU_ACTIVE_NUM - 1)) of std_logic_vector (15 downto 0);
349
350 -- general default values
351 -- !!! to be defined !!!
352 constant sd_block_default_array : sd_block_default_array_type := (
353 X"0080", -- SD_ADDR_general_settings -- general settings
354 --X"0010", -- SD_ADDR_general_settings -- general settings
355 X"0000", -- SD_ADDR_led -- on-board status LEDs
356 X"03E8", -- SD_ADDR_lp_pt_freq -- light pulser and pedestal trigger frequency
357 --X"0001", -- SD_ADDR_lp_pt_freq -- light pulser and pedestal trigger frequency
358 X"0000", -- SD_ADDR_lp_pt_ratio... -- ratio between LP1, LP2 and pedestal triggers
359 --X"0001", -- SD_ADDR_lp_pt_ratio... -- ratio between LP1, LP2 and pedestal triggers
360 X"8020", -- SD_ADDR_lp1_amplitude -- light pulser 1 amplitude
361 X"4001", -- SD_ADDR_lp2_amplitude -- light pulser 2 amplitude
362 X"0000", -- SD_ADDR_lp1_delay -- light pulser 1 delay
363 X"0000", -- SD_ADDR_lp2_delay -- light pulser 2 delay
364 X"0001", -- SD_ADDR_coin_n_p -- majority coincidence n (for physics)
365 X"001E", -- SD_ADDR_coin_n_c -- majority coincidence n (for calibration)
366 X"0000", -- SD_ADDR_trigger_delay -- trigger delay
367 X"0000", -- SD_ADDR_timemarker_delay -- timemarker delay
368 X"0017", -- SD_ADDR_dead_time -- dead time, 8ns + 4x23ns = 100ns
369 X"0003", -- SD_ADDR_cc_R0_HI -- clock conditioner R0 bits 31...16
370 X"8000", -- SD_ADDR_cc_R0_LO -- clock conditioner R0 bits 15...0
371 X"0001", -- SD_ADDR_cc_R1_HI -- clock conditioner R1 bits 31...16
372 X"0101", -- SD_ADDR_cc_R1_LO -- clock conditioner R1 bits 15...0
373 X"1000", -- SD_ADDR_cc_R8_HI -- clock conditioner R8 bits 31...16
374 X"0908", -- SD_ADDR_cc_R8_LO -- clock conditioner R8 bits 15...0
375 X"A003", -- SD_ADDR_cc_R9_HI -- clock conditioner R9 bits 31...16
376 X"2A09", -- SD_ADDR_cc_R9_LO -- clock conditioner R9 bits 15...0
377 X"0082", -- SD_ADDR_cc_R11_HI -- clock conditioner R11 bits 31...16
378 X"000B", -- SD_ADDR_cc_R11_LO -- clock conditioner R11 bits 15...0
379 X"020A", -- SD_ADDR_cc_R13_HI -- clock conditioner R13 bits 31...16
380 X"000D", -- SD_ADDR_cc_R13_LO -- clock conditioner R13 bits 15...0
381 X"0830", -- SD_ADDR_cc_R14_HI -- clock conditioner R14 bits 31...16
382 X"280E", -- SD_ADDR_cc_R14_LO -- clock conditioner R14 bits 15...0
383 X"1400", -- SD_ADDR_cc_R15_HI -- clock conditioner R15 bits 31...16
384 X"FA0F", -- SD_ADDR_cc_R15_LO -- clock conditioner R15 bits 15...0
385 X"0001", -- SD_ADDR_coin_win_p -- majority coincidence window (for physics), 8ns + 4x1ns = 12ns
386 X"0001", -- SD_ADDR_coin_win_c -- majority coincidence window (for calibration), 8ns + 4x1ns = 12ns
387 X"001F" -- -- Spare
388 );
389
390 -- default values for all FTUs
391 constant sd_block_ftu_default_array : sd_block_ftu_default_array_type := (
392 X"01FF", -- enables patch 0 board x crate y
393 X"01FF", -- enables patch 1 board x crate y
394 X"01FF", -- enables patch 2 board x crate y
395 X"01FF", -- enables patch 3 board x crate y
396 X"01F4", -- DAC_A board x crate y
397 X"01F4", -- DAC_B board x crate y
398 X"01F4", -- DAC_C board x crate y
399 X"01F4", -- DAC_D board x crate y
400 X"0010", -- DAC_H board x crate y
401 X"0001" -- Prescaling board x crate y
402 );
403
404 --default values for active FTU lists
405 constant sd_block_default_ftu_active_list : sd_block_default_ftu_active_list_type := (
406 X"0001",
407 X"0000",
408 X"0000",
409 X"0000"
410 );
411
412 --======================================================================================
413 -- Constants for Light pulser interface width (8ns+value*4ns)
414 --======================================================================================
415 -- constant low_PLC : integer := 16; -- minimal pulse duration in units of 4 ns
416 -- constant width_PLC : integer := 6; -- counter width pulse duration
417 -- constant FLD_PULSE_LENGTH : integer := 12;
418 -- constant FLD_MIN_FREQ_DIV : integer := 25;
419 -- constant FLD_FD_MULT : integer := 50;
420 -- constant FLD_FD_MAX_RANGE : integer := 64;
421
422 -- --------------------------------------------------------------------------------------
423 -- Lightpulser Basic Version
424 -- --------------------------------------------------------------------------------------
425 constant FLD_PULSE_LENGTH_BASIC : integer := 3; -- 60ns pulse @ 50MHz
426 constant FLD_MIN_FREQ_DIV_BASIC : integer := 25;
427 constant FLD_FD_MULT_BASIC : integer := 10;
428 constant FLD_FD_MAX_RANGE_BASIC : integer := 64;
429
430 -- Timing counter
431 constant TC_WIDTH : integer := 48;
432 constant PRECOUNT_WIDTH : integer := 8;
433 constant PRECOUNT_DIVIDER : integer := 50;
434
435 --======================================================================================
436 -- Constants for calibration and pedestal triggers generation
437 --======================================================================================
438 constant LOW_SPEED_CLOCK_FREQ : real := 50000000.0;
439 constant LOW_SPEED_CLOCK_PERIOD : real := 1.0/LOW_SPEED_CLOCK_FREQ;
440 constant MS_PERIOD : real := 0.001;
441 constant MAX_MS_COUNTER_WIDTH : integer := integer(ceil(log2(real(MS_PERIOD/LOW_SPEED_CLOCK_PERIOD))));
442 constant MAX_MS_COUNTER_VAL : integer := integer(MS_PERIOD/LOW_SPEED_CLOCK_PERIOD);
443 --======================================================================================
444
445 --======================================================================================
446 -- Constants for trigger and TIM signals width (8ns+value*4ns)
447 --======================================================================================
448 constant TRIG_SIGNAL_PULSE_WIDTH : integer range 0 to 15 := 10;
449 constant TIM_SIGNAL_PULSE_WIDTH : integer range 0 to 15 := 0;
450 --======================================================================================
451
452end ftm_constants;
Note: See TracBrowser for help on using the repository browser.