2 * @file x393_localparams.vh
4 * @author Andrey Filippov
6 * @brief Local parameters for simulation of the x393
8 * @copyright Copyright (c) 2015 Elphel, Inc.
12 * x393_localparams.vh is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation, either version 3 of the License, or
15 * (at your option) any later version.
17 * x393_localparams.vh is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program. If not, see <http://www.gnu.org/licenses/> .
25 * Additional permission under GNU GPL version 3 section 7:
26 * If you modify this Program, or any covered work, by linking or combining it
27 * with independent modules provided by the FPGA vendor only (this permission
28 * does not extend to any 3-rd party modules, "soft cores" or macros) under
29 * different license terms solely for the purpose of generating binary "bitstream"
30 * files and/or simulating the code, the copyright holders of this Program give
31 * you the right to distribute the covered work without those independent modules
32 * as long as the source code for them is available from the FPGA vendor free of
33 * charge, and there is no dependence on any encrypted modules for simulating of
34 * the combined code. This permission applies to you if the distributed code
35 * contains all the components and scripts required to completely simulate it
36 * with at least one of the Free Software programs.
38 // S uppressWarnings VEditor
39 localparam [1:0] DEFAULT_STATUS_MODE = 3; // auto status on change, increase sequence number
40 localparam LD_DLY_LANE0_ODELAY = DLY_LD+'h00; // 0x1080
41 localparam LD_DLY_LANE0_IDELAY = DLY_LD+'h10; // 0x1090
42 localparam LD_DLY_LANE1_ODELAY = DLY_LD+'h20; // 0x10a0
43 localparam LD_DLY_LANE1_IDELAY = DLY_LD+'h30; // 0x10b0
44 localparam LD_DLY_CMDA = DLY_LD+'h40; // 0x10c0
45 localparam LD_DLY_PHASE = DLY_LD+'h60; // 0x10e0
46 localparam DLY_SET = MCONTR_PHY_0BIT_ADDR + MCONTR_PHY_0BIT_DLY_SET; //0x1020
47 // different sets of settings for the functional simulation and the actual hardware - should not be needed anymore
48 localparam T_RFC=50; // t_rfc=50 for tCK=2.5ns
49 localparam T_REFI=48; // t_refi; # 48/97 for normal, 8 - for simulation (7.8us <85C, 3.9us >85C)
51 // alternative to set same type delays to the same value
52 localparam DLY_DQ_IDELAY = ( (DLY_LANE0_IDELAY & 8'hff)+
53 ((DLY_LANE0_IDELAY>> 8) & 8'hff)+
54 ((DLY_LANE0_IDELAY>>16) & 8'hff)+
55 ((DLY_LANE0_IDELAY>>24) & 8'hff)+
56 ((DLY_LANE0_IDELAY>>32) & 8'hff)+
57 ((DLY_LANE0_IDELAY>>40) & 8'hff)+
58 ((DLY_LANE0_IDELAY>>48) & 8'hff)+
59 ((DLY_LANE0_IDELAY>>56) & 8'hff)+
60 (DLY_LANE1_IDELAY & 8'hff)+
61 ((DLY_LANE1_IDELAY>> 8) & 8'hff)+
62 ((DLY_LANE1_IDELAY>>16) & 8'hff)+
63 ((DLY_LANE1_IDELAY>>24) & 8'hff)+
64 ((DLY_LANE1_IDELAY>>32) & 8'hff)+
65 ((DLY_LANE1_IDELAY>>40) & 8'hff)+
66 ((DLY_LANE1_IDELAY>>48) & 8'hff)+
67 ((DLY_LANE1_IDELAY>>56) & 8'hff)+ 8 ) >> 4;
68 localparam DLY_DQ_ODELAY = (((DLY_LANE0_ODELAY & 8'hff)+
69 ((DLY_LANE0_ODELAY>> 8) & 8'hff)+
70 ((DLY_LANE0_ODELAY>>16) & 8'hff)+
71 ((DLY_LANE0_ODELAY>>24) & 8'hff)+
72 ((DLY_LANE0_ODELAY>>32) & 8'hff)+
73 ((DLY_LANE0_ODELAY>>40) & 8'hff)+
74 ((DLY_LANE0_ODELAY>>48) & 8'hff)+
75 ((DLY_LANE0_ODELAY>>56) & 8'hff)+
76 (DLY_LANE1_ODELAY & 8'hff)+
77 ((DLY_LANE1_ODELAY>> 8) & 8'hff)+
78 ((DLY_LANE1_ODELAY>>16) & 8'hff)+
79 ((DLY_LANE1_ODELAY>>24) & 8'hff)+
80 ((DLY_LANE1_ODELAY>>32) & 8'hff)+
81 ((DLY_LANE1_ODELAY>>40) & 8'hff)+
82 ((DLY_LANE1_ODELAY>>48) & 8'hff)+
83 ((DLY_LANE1_ODELAY>>56) & 8'hff)+ 8 ) >> 4);
85 localparam DLY_DQS_IDELAY = (((DLY_LANE0_IDELAY>>64) & 8'hff)+
86 ((DLY_LANE1_IDELAY>>64) & 8'hff)+ 1 ) >> 1;
87 localparam DLY_DQS_ODELAY = (((DLY_LANE0_ODELAY>>64) & 8'hff)+
88 ((DLY_LANE1_ODELAY>>64) & 8'hff)+ 1 ) >> 1;
89 localparam DLY_DM_ODELAY = DLY_DQ_ODELAY;
90 localparam DLY_CMDA_ODELAY =(((DLY_CMDA>> 0) & 8'hff)+
91 ((DLY_CMDA>> 8) & 8'hff)+
92 ((DLY_CMDA>>'h10) & 8'hff)+
93 ((DLY_CMDA>>'h18) & 8'hff)+
94 ((DLY_CMDA>>'h20) & 8'hff)+
95 ((DLY_CMDA>>'h28) & 8'hff)+
96 ((DLY_CMDA>>'h30) & 8'hff)+
97 ((DLY_CMDA>>'h38) & 8'hff)+
98 ((DLY_CMDA>>'h40) & 8'hff)+
99 ((DLY_CMDA>>'h48) & 8'hff)+
100 ((DLY_CMDA>>'h50) & 8'hff)+
101 ((DLY_CMDA>>'h58) & 8'hff)+
102 ((DLY_CMDA>>'h60) & 8'hff)+
103 ((DLY_CMDA>>'h68) & 8'hff)+
104 ((DLY_CMDA>>'h70) & 8'hff)+
105 ((DLY_CMDA>>'hc0) & 8'hff)+
106 ((DLY_CMDA>>'hc8) & 8'hff)+
107 ((DLY_CMDA>>'hd0) & 8'hff)+
108 ((DLY_CMDA>>'hd8) & 8'hff)+
109 ((DLY_CMDA>>'he0) & 8'hff)+
110 ((DLY_CMDA>>'he8) & 8'hff)+
111 ((DLY_CMDA>>'hf0) & 8'hff)+
112 ((DLY_CMDA>>'hf8) & 8'hff)+ 12 ) / 23;
113 localparam DLY_LANE0_DQS_WLV_IDELAY = DLY_DQS_IDELAY; // b0; // idelay dqs
114 localparam DLY_LANE1_DQS_WLV_IDELAY = DLY_DQS_IDELAY; // b0; idelay dqs
116 localparam DQSTRI_FIRST= 4'h1; // 3; // DQS tri-state control word, first when enabling output
117 localparam DQSTRI_LAST= 4'hc; // DQS tri-state control word, first after disabling output
118 localparam DQTRI_FIRST= 4'h3; // 7; // DQ tri-state control word, first when enabling output
119 localparam DQTRI_LAST= 4'he; // DQ tri-state control word, first after disabling output
120 localparam WBUF_DLY_DFLT= DFLT_WBUF_DELAY; // 4'h8; // 4'h6; // extra delay (in mclk cycles) to add to write buffer enable (DDR3 read data)
121 localparam WBUF_DLY_WLV= DFLT_WBUF_DELAY; // 4'h7; // write leveling mode: extra delay (in mclk cycles) to add to write buffer enable (DDR3 read data)
123 localparam INITIALIZE_OFFSET= 'h00; // moemory initialization start address (in words) ..`h0c
124 localparam REFRESH_OFFSET= 'h10; // refresh start address (in words) ..`h13
125 localparam WRITELEV_OFFSET= 'h20; // write leveling start address (in words) ..`h2a
127 localparam READ_PATTERN_OFFSET='h40; // read pattern to memory block sequence start address (in words) ..'h053 with 8x2*64 bits (variable)
128 localparam WRITE_BLOCK_OFFSET= 'h100; // write block sequence start address (in words) ..'h14c
129 localparam READ_BLOCK_OFFSET= 'h180; // read block sequence start address (in words)
131 localparam STATUS_SEQ_SHFT= 26; // bits [31:26] is the sequence number
132 localparam STATUS_2LSB_SHFT= 24; // bits [25:24] get the 2 LSB of the status (transmitted with the sequence number in the second byte)
133 localparam STATUS_MSB_RSHFT= 2; // status bits [25:2] are read through [23:0]
135 localparam STATUS_PSHIFTER_RDY_MASK = 1<<STATUS_2LSB_SHFT;
136 localparam FRAME_START_ADDRESS= 'h1000; // RA=80, CA=0, BA=0 22-bit frame start address (3 CA LSBs==0. BA==0)
137 localparam FRAME_START_ADDRESS_INC= 'h800;
138 localparam LAST_BUF_FRAME = 1;
139 localparam CAMSYNC_DELAY = 200;
142 localparam FRAME_FULL_WIDTH= 'h0c0; // Padded line length (8-row increment), in 8-bursts (16 bytes)
144 // localparam AFI_LO_ADDR64= 'h4000; // start of the system memory range in 64-bit words
145 // localparam AFI_SIZE64= 'h4000; // size of system memory range in 64-bit words
147 // Same as in the actual hardware
148 localparam AFI_LO_ADDR64= 'h4f20000; // start of the system memory range in 64-bit words
149 localparam AFI_SIZE64= 'h0c80000; // size of system memory range in 64-bit words
152 // localparam SCANLINE_WINDOW_WH= `h079000a2; // 2592*1936: low word - 13-bit window width (0->'h4000), high word - 16-bit frame height (0->'h10000)
153 // localparam SCANLINE_WINDOW_WH= 'h0009000b; // 176*9: low word - 13-bit window width (0->'h4000), high word - 16-bit frame height (0->'h10000)
154 localparam WINDOW_WIDTH= 'h000b; //'h005b; //'h000b; // 176: 13-bit window width (0->'h4000)
155 localparam WINDOW_HEIGHT= 'h000a; // 9: 16-bit window height (0->'h10000)
156 // localparam SCANLINE_X0Y0= 'h00050003; // X0=3*16=48, Y0=5: // low word - 13-bit window left, high word - 16-bit window top
157 localparam WINDOW_X0= 'h5c; //'h7f; // 'h005c; // 'h7c; // 'h0003; // X0=3*16=48 - 13-bit window left
158 localparam WINDOW_Y0= 'h0005; // Y0=5: 16-bit window top
159 // localparam SCANLINE_STARTXY= 'h0; // low word - 13-bit start X (relative to window), high word - 16-bit start y (normally 0)
160 localparam SCANLINE_STARTX= 'h0; // 13-bit start X (relative to window), high word (normally 0)
161 localparam SCANLINE_STARTY= 'h0; // 16-bit start y (normally 0)
162 localparam [1:0] SCANLINE_EXTRA_PAGES= 0; // 0..2 - number of pages in the buffer to keep/not write // SuppressThisWarning VEditor - not used
164 localparam TILED_STARTX= 'h0; // 13-bit start X (relative to window), high word (normally 0)
165 localparam TILED_STARTY= 'h0; // 16-bit start y (normally 0)
166 localparam [1:0] TILED_EXTRA_PAGES= 0; // 0..2 - number of pages in the buffer to keep/not write
168 localparam TILED_KEEP_OPEN= 1'b1; //1'b1; // 1'b0; // Do not close banks between reads (valid only for tiles <=8 rows, needed if less than 3? rows)
170 localparam TILE_WIDTH= 'h04; // 6-bit tile width (1..'h40)
171 localparam TILE_HEIGHT= 'h08; //'h05; // 'h04; //'h06; // 6-bit tile height (1..'h40) // 4 - violation
172 localparam TILE_VSTEP= 'h04; // 6-bit tile vertical step, with no overlap it is equal to TILE_HEIGHT (1..'h40)
175 localparam TEST01_START_FRAME= 1;
176 localparam TEST01_NEXT_PAGE= 2;
177 localparam TEST01_SUSPEND= 4; // SuppressThisWarning VEditor - not used
179 localparam TEST_INITIAL_BURST= 4; // 3;