Tue, 10 Aug 2010 14:41:06 +0100
add refresh timer and refresh FSM logic
| philpem@0 | 1 | /**************************************************************************** |
| philpem@0 | 2 | * |
| philpem@0 | 3 | * |
| philpem@0 | 4 | ****************************************************************************/ |
| philpem@0 | 5 | |
| philpem@0 | 6 | module wb_sdram ( |
| philpem@0 | 7 | // Clocks and resets |
| philpem@0 | 8 | input wb_clk_i, // WISHBONE clock |
| philpem@0 | 9 | input wb_rst_i, // WISHBONE reset |
| philpem@0 | 10 | |
| philpem@0 | 11 | // WISHBONE bus |
| philpem@0 | 12 | input [31:0] wb_adr_i, // WISHBONE address |
| philpem@0 | 13 | input [31:0] wb_dat_i, // WISHBONE data in |
| philpem@0 | 14 | output reg [31:0] wb_dat_o, // WISHBONE data out |
| philpem@0 | 15 | input [3:0] wb_sel_i, // WISHBONE byte select |
| philpem@0 | 16 | input wb_we_i, // WISHBONE write enable (R/#W) |
| philpem@0 | 17 | input wb_cyc_i, // WISHBONE cycle |
| philpem@0 | 18 | input wb_stb_i, // WISHBONE strobe |
| philpem@0 | 19 | output wb_ack_o, // WISHBONE cycle acknowledge (data available, DTACK) |
| philpem@0 | 20 | output wb_err_o, // WISHBONE bus error |
| philpem@0 | 21 | output wb_rty_o, // WISHBONE retry-later |
| philpem@0 | 22 | |
| philpem@0 | 23 | // SDRAM |
| philpem@0 | 24 | output reg sdram_cke, // SDRAM clock enable |
| philpem@0 | 25 | output sdram_cs_n, // SDRAM chip select (active low) |
| philpem@0 | 26 | output sdram_ras_n, // SDRAM row address strobe (active low) |
| philpem@0 | 27 | output sdram_cas_n, // SDRAM column address strobe (active low) |
| philpem@0 | 28 | output sdram_we_n, // SDRAM write enable (active low) |
| philpem@0 | 29 | output [11:0] sdram_a, // SDRAM address |
| philpem@0 | 30 | output reg [1:0] sdram_ba, // SDRAM bank address |
| philpem@0 | 31 | output reg [3:0] sdram_dqm, // SDRAM data mask (OE#; 0=active, 1=disabled) |
| philpem@0 | 32 | inout [31:0] sdram_dq, // SDRAM data bus |
| philpem@0 | 33 | |
| philpem@0 | 34 | // Debugging |
| philpem@3 | 35 | output /*reg*/ [2:0] debug // debug bits |
| philpem@0 | 36 | ); |
| philpem@0 | 37 | |
| philpem@0 | 38 | |
| philpem@0 | 39 | /**** |
| philpem@0 | 40 | * SDRAM data output buffer |
| philpem@0 | 41 | ****/ |
| philpem@0 | 42 | // OE=1 for output mode, 0 for input |
| philpem@0 | 43 | reg sdram_dq_oe; |
| philpem@0 | 44 | // SDRAM output register |
| philpem@0 | 45 | reg [31:0] sdram_dq_r; |
| philpem@0 | 46 | assign sdram_dq = sdram_dq_oe ? sdram_dq_r : 32'hZZZZ; |
| philpem@0 | 47 | |
| philpem@0 | 48 | |
| philpem@0 | 49 | |
| philpem@0 | 50 | /**** |
| philpem@0 | 51 | * State timer |
| philpem@0 | 52 | * This is used to ensure that the state machine abides by RAM timing |
| philpem@0 | 53 | * restrictions. |
| philpem@0 | 54 | ****/ |
| philpem@0 | 55 | reg [31:0] timer; |
| philpem@0 | 56 | |
| philpem@0 | 57 | |
| philpem@0 | 58 | /**** |
| philpem@0 | 59 | * MODE logic |
| philpem@0 | 60 | ****/ |
| philpem@0 | 61 | reg [5:0] sdram_mode; |
| philpem@0 | 62 | reg [11:0] sdram_addr; |
| philpem@0 | 63 | assign sdram_cs_n = sdram_mode[3]; |
| philpem@0 | 64 | assign sdram_ras_n = sdram_mode[2]; |
| philpem@0 | 65 | assign sdram_cas_n = sdram_mode[1]; |
| philpem@0 | 66 | assign sdram_we_n = sdram_mode[0]; |
| philpem@0 | 67 | assign sdram_a = {sdram_addr[11], (sdram_mode[5] ? sdram_mode[4] : sdram_addr[10]), sdram_addr[9:0]}; |
| philpem@0 | 68 | |
| philpem@0 | 69 | // SDRAM chip instructions |
| philpem@0 | 70 | // The bit order is as specified in the ISSI datasheet: A10 Override, A10, CS#, RAS#, CAS#, WE#. |
| philpem@0 | 71 | // If A10 Override is set, then A10 will be overridden to the value specified in the M_ constant. |
| philpem@0 | 72 | localparam M_BankActivate = 6'b0X0011; |
| philpem@0 | 73 | localparam M_PrechargeBank = 6'b100010; |
| philpem@0 | 74 | localparam M_PrechargeAll = 6'b110010; |
| philpem@0 | 75 | localparam M_Write = 6'b100100; |
| philpem@0 | 76 | localparam M_WritePrecharge = 6'b110100; |
| philpem@0 | 77 | localparam M_Read = 6'b100101; |
| philpem@0 | 78 | localparam M_ReadPrecharge = 6'b110101; |
| philpem@2 | 79 | localparam M_LoadModeRegister = 6'b0X0000; |
| philpem@0 | 80 | localparam M_Nop = 6'b0X0111; |
| philpem@0 | 81 | localparam M_BurstStop = 6'b0X0110; |
| philpem@0 | 82 | localparam M_Inhibit = 6'b0X1XXX; // maybe X1111? |
| philpem@0 | 83 | localparam M_AutoRefresh = 6'b0X0001; |
| philpem@0 | 84 | |
| philpem@0 | 85 | |
| philpem@0 | 86 | /**** |
| philpem@3 | 87 | * Refresh Timer |
| philpem@3 | 88 | ****/ |
| philpem@3 | 89 | parameter REFRESH_INTERVAL = 32'd390 - 32'd1; |
| philpem@3 | 90 | reg [31:0] refresh_timer; |
| philpem@3 | 91 | reg refresh_req, refresh_ack, refresh_timer_en; |
| philpem@3 | 92 | always @(posedge wb_clk_i) begin |
| philpem@3 | 93 | if (wb_rst_i | !refresh_timer_en) begin |
| philpem@3 | 94 | // Reset; clear timer, unset REFRESH REQUEST |
| philpem@3 | 95 | refresh_req <= 1'b0; |
| philpem@3 | 96 | refresh_timer <= REFRESH_INTERVAL; |
| philpem@3 | 97 | end else if (refresh_ack) begin |
| philpem@3 | 98 | // Refresh Ack, clear Refresh Request. |
| philpem@3 | 99 | refresh_req <= 1'b0; |
| philpem@3 | 100 | end else if (refresh_timer == 0) begin |
| philpem@3 | 101 | // Refresh timer timed out, make a Refresh Request and reload the timer |
| philpem@3 | 102 | refresh_req <= 1'b1; |
| philpem@3 | 103 | refresh_timer <= REFRESH_INTERVAL; |
| philpem@3 | 104 | end else begin |
| philpem@3 | 105 | // Otherwise just decrement the timer |
| philpem@3 | 106 | refresh_timer <= refresh_timer - 32'd1; |
| philpem@3 | 107 | end |
| philpem@3 | 108 | end |
| philpem@3 | 109 | |
| philpem@3 | 110 | assign debug = { 1'b0, refresh_req, refresh_ack }; |
| philpem@3 | 111 | |
| philpem@3 | 112 | /**** |
| philpem@0 | 113 | * Finite State Machine |
| philpem@0 | 114 | ****/ |
| philpem@2 | 115 | localparam ST_INIT1 = 32'd0; |
| philpem@2 | 116 | localparam ST_INIT2 = 32'd1; |
| philpem@2 | 117 | localparam ST_NOP1 = 32'd2; |
| philpem@2 | 118 | localparam ST_PrechargeAll = 32'd3; |
| philpem@2 | 119 | localparam ST_PrechargeAll_Wait = 32'd4; |
| philpem@2 | 120 | localparam ST_AutoRefresh1 = 32'd5; |
| philpem@2 | 121 | localparam ST_AutoRefresh1_Wait = 32'd6; |
| philpem@2 | 122 | localparam ST_AutoRefresh2 = 32'd7; |
| philpem@2 | 123 | localparam ST_AutoRefresh2_Wait = 32'd8; |
| philpem@2 | 124 | localparam ST_LoadModeRegister = 32'd9; |
| philpem@2 | 125 | localparam ST_LoadModeRegister_Wait = 32'd10; |
| philpem@3 | 126 | localparam ST_Spin = 32'd11; // <<== main 'spin' / 'idle' state |
| philpem@3 | 127 | localparam ST_Refresh = 32'd12; |
| philpem@3 | 128 | localparam ST_Refresh_Wait = 32'd13; |
| philpem@0 | 129 | |
| philpem@0 | 130 | reg [31:0] state; |
| philpem@0 | 131 | always @(posedge wb_clk_i) begin |
| philpem@0 | 132 | if (wb_rst_i) begin |
| philpem@0 | 133 | // Initialise state machine and timer |
| philpem@0 | 134 | state <= ST_INIT1; |
| philpem@3 | 135 | // debug <= 3'd0; |
| philpem@0 | 136 | timer <= 32'd0; |
| philpem@3 | 137 | |
| philpem@3 | 138 | // Clear REFRESH ACK flag and disable refresh timer |
| philpem@3 | 139 | refresh_ack <= 1'b0; |
| philpem@3 | 140 | refresh_timer_en <= 1'b0; |
| philpem@0 | 141 | |
| philpem@0 | 142 | // Initialisation state for SDRAM |
| philpem@0 | 143 | sdram_cke <= 1'b0; |
| philpem@0 | 144 | sdram_mode <= M_Inhibit; |
| philpem@0 | 145 | sdram_addr <= 12'h000; |
| philpem@0 | 146 | sdram_ba <= 2'b00; |
| philpem@0 | 147 | sdram_dqm <= 4'b0000; |
| philpem@0 | 148 | sdram_dq_oe <= 1'b0; // data output disabled |
| philpem@0 | 149 | sdram_dq_r <= 32'd0; |
| philpem@0 | 150 | end else begin |
| philpem@0 | 151 | // timer logic |
| philpem@0 | 152 | if (timer > 32'd0) begin |
| philpem@0 | 153 | timer <= timer - 32'd1; |
| philpem@0 | 154 | end |
| philpem@0 | 155 | |
| philpem@0 | 156 | // state machine logic |
| philpem@0 | 157 | case (state) |
| philpem@0 | 158 | ST_INIT1: begin |
| philpem@0 | 159 | // INIT1: Set up for initial power-up wait |
| philpem@0 | 160 | state <= ST_INIT2; |
| philpem@0 | 161 | timer <= 32'd50_000; // TODO: dependent on core clock rate. Needs to be >= 100us |
| philpem@0 | 162 | |
| philpem@0 | 163 | // SDRAM state |
| philpem@0 | 164 | sdram_cke <= 1'b0; // clock disabled |
| philpem@0 | 165 | sdram_mode <= M_Inhibit; |
| philpem@0 | 166 | sdram_addr <= 12'h000; |
| philpem@0 | 167 | sdram_ba <= 2'b00; |
| philpem@0 | 168 | sdram_dqm <= 4'b1111; |
| philpem@0 | 169 | sdram_dq_oe <= 1'b0; // data output disabled |
| philpem@0 | 170 | sdram_dq_r <= 32'd0; |
| philpem@0 | 171 | end |
| philpem@0 | 172 | |
| philpem@0 | 173 | ST_INIT2: begin |
| philpem@0 | 174 | // INIT2: Power-up wait. Keep CKE low until ~50 cycles before |
| philpem@0 | 175 | // the end of the power-up wait, then bring CKE high. |
| philpem@0 | 176 | if (timer == 32'd0) begin |
| philpem@0 | 177 | // Timer hit zero. Send a NOP. |
| philpem@2 | 178 | state <= ST_NOP1; |
| philpem@1 | 179 | end else if (timer < 32'd50) begin |
| philpem@0 | 180 | // Timer value is more than zero but less than 50; CKE is on, but |
| philpem@0 | 181 | // keep waiting for the timer to actually expire. |
| philpem@0 | 182 | sdram_cke <= 1'b1; |
| philpem@0 | 183 | state <= ST_INIT2; |
| philpem@3 | 184 | // debug <= 3'd1; |
| philpem@0 | 185 | end |
| philpem@0 | 186 | sdram_mode <= M_Inhibit; |
| philpem@0 | 187 | end |
| philpem@0 | 188 | |
| philpem@2 | 189 | ST_NOP1: begin |
| philpem@2 | 190 | // Apply one or more NOP commands to the SDRAM |
| philpem@2 | 191 | sdram_mode <= M_Nop; |
| philpem@2 | 192 | state <= ST_PrechargeAll; |
| philpem@2 | 193 | end |
| philpem@2 | 194 | |
| philpem@2 | 195 | ST_PrechargeAll: begin |
| philpem@2 | 196 | // Precharge All, then wait T_rp (20ns) |
| philpem@2 | 197 | sdram_mode <= M_PrechargeAll; |
| philpem@2 | 198 | timer <= 32'd0; // wait 1tcy (40ns) ---> TIMER HERE |
| philpem@2 | 199 | state <= ST_PrechargeAll_Wait; |
| philpem@2 | 200 | end |
| philpem@2 | 201 | |
| philpem@2 | 202 | ST_PrechargeAll_Wait: begin |
| philpem@2 | 203 | // Wait for T_rp after Precharge All |
| philpem@2 | 204 | sdram_mode <= M_Nop; |
| philpem@2 | 205 | if (timer == 32'd0) begin |
| philpem@2 | 206 | // Timer hit zero. Continue |
| philpem@2 | 207 | state <= ST_AutoRefresh1; |
| philpem@2 | 208 | end |
| philpem@2 | 209 | end |
| philpem@2 | 210 | |
| philpem@2 | 211 | ST_AutoRefresh1: begin |
| philpem@2 | 212 | // Auto Refresh 1 of 2, wait T_rfc (70ns) after each |
| philpem@2 | 213 | sdram_mode <= M_AutoRefresh; |
| philpem@2 | 214 | timer <= 32'd1; // wait 2tcy (80ns) ---> TIMER HERE |
| philpem@2 | 215 | state <= ST_AutoRefresh1_Wait; |
| philpem@2 | 216 | end |
| philpem@2 | 217 | |
| philpem@2 | 218 | ST_AutoRefresh1_Wait: begin |
| philpem@2 | 219 | // Wait for T_rfc |
| philpem@1 | 220 | sdram_mode <= M_Nop; |
| philpem@2 | 221 | if (timer == 32'd0) begin |
| philpem@2 | 222 | // Timer hit zero. Continue |
| philpem@2 | 223 | state <= ST_AutoRefresh2; |
| philpem@2 | 224 | end |
| philpem@2 | 225 | end |
| philpem@2 | 226 | |
| philpem@2 | 227 | ST_AutoRefresh2: begin |
| philpem@2 | 228 | // Auto Refresh 2 of 2, wait T_rfc (70ns) after each |
| philpem@2 | 229 | sdram_mode <= M_AutoRefresh; |
| philpem@2 | 230 | timer <= 32'd1; // wait 2tcy (80ns) ---> TIMER HERE |
| philpem@2 | 231 | state <= ST_AutoRefresh2_Wait; |
| philpem@2 | 232 | end |
| philpem@2 | 233 | |
| philpem@2 | 234 | ST_AutoRefresh2_Wait: begin |
| philpem@2 | 235 | // Wait for T_rfc |
| philpem@2 | 236 | sdram_mode <= M_Nop; |
| philpem@2 | 237 | if (timer == 32'd0) begin |
| philpem@2 | 238 | // Timer hit zero. Continue |
| philpem@2 | 239 | state <= ST_LoadModeRegister; |
| philpem@2 | 240 | end |
| philpem@2 | 241 | end |
| philpem@2 | 242 | |
| philpem@2 | 243 | ST_LoadModeRegister: begin |
| philpem@2 | 244 | // Load Mode Register |
| philpem@2 | 245 | /** |
| philpem@2 | 246 | * Mode register: |
| philpem@2 | 247 | * - BS0,1 = 00 [RFU] |
| philpem@2 | 248 | * - A11,10 = 00 [RFU] |
| philpem@2 | 249 | * - A9 = 0 [WBL -- write burst length same as read burst length] |
| philpem@2 | 250 | * - A8,7 = 00 [Test Mode off] |
| philpem@2 | 251 | * - A6..4 = 010 [CAS Latency = 2 clocks] |
| philpem@2 | 252 | * - A3 = 0 [Burst type = sequential] |
| philpem@2 | 253 | * - A2..0 = 000 [Burst length = 1 word] |
| philpem@2 | 254 | */ |
| philpem@2 | 255 | sdram_ba <= 2'b00; |
| philpem@2 | 256 | sdram_addr <= 12'b00_0_00_010_000; |
| philpem@2 | 257 | sdram_mode <= M_LoadModeRegister; |
| philpem@2 | 258 | |
| philpem@2 | 259 | // Wait T_mrd (2 clock cycles) |
| philpem@2 | 260 | timer <= 32'd1; // (2cy)-1 ---> TIMER HERE |
| philpem@2 | 261 | state <= ST_LoadModeRegister_Wait; |
| philpem@2 | 262 | end |
| philpem@2 | 263 | |
| philpem@2 | 264 | ST_LoadModeRegister_Wait: begin |
| philpem@2 | 265 | // Wait for LMR to complete |
| philpem@2 | 266 | sdram_mode <= M_Nop; |
| philpem@2 | 267 | sdram_ba <= 2'd0; |
| philpem@2 | 268 | sdram_addr <= 12'd0; |
| philpem@2 | 269 | if (timer == 32'd0) begin |
| philpem@2 | 270 | // Timer hit zero. Continue |
| philpem@2 | 271 | state <= ST_Spin; |
| philpem@2 | 272 | end |
| philpem@2 | 273 | end |
| philpem@2 | 274 | |
| philpem@2 | 275 | ST_Spin: begin |
| philpem@3 | 276 | // Enable refresh timer |
| philpem@3 | 277 | refresh_timer_en <= 1'b1; |
| philpem@3 | 278 | |
| philpem@2 | 279 | sdram_mode <= M_Inhibit; |
| philpem@3 | 280 | |
| philpem@3 | 281 | if (refresh_req) begin |
| philpem@3 | 282 | // Refresh request received. Ack it and do a refresh. |
| philpem@3 | 283 | refresh_ack <= 1'b1; |
| philpem@3 | 284 | state <= ST_Refresh; |
| philpem@3 | 285 | end else begin |
| philpem@3 | 286 | state <= ST_Spin; |
| philpem@3 | 287 | end |
| philpem@3 | 288 | end |
| philpem@3 | 289 | |
| philpem@3 | 290 | ST_Refresh: begin |
| philpem@3 | 291 | // Refresh timer timed out; do a refresh run |
| philpem@3 | 292 | // Start by clearing the ACK flag (which was set by the Spin state) |
| philpem@3 | 293 | refresh_ack <= 1'b0; |
| philpem@3 | 294 | // Tell the SDRAM to do a Refresh |
| philpem@3 | 295 | sdram_mode <= M_AutoRefresh; |
| philpem@3 | 296 | // Wait for T_rfc |
| philpem@3 | 297 | timer <= 32'd1; // wait Trfc (70ns ideally, we give 80ns) ---> TIMER HERE |
| philpem@3 | 298 | state <= ST_Refresh_Wait; |
| philpem@3 | 299 | end |
| philpem@3 | 300 | |
| philpem@3 | 301 | ST_Refresh_Wait: begin |
| philpem@3 | 302 | // Wait for T_rfc |
| philpem@3 | 303 | sdram_mode <= M_Nop; |
| philpem@3 | 304 | if (timer == 32'd0) begin |
| philpem@3 | 305 | // Timer hit zero. Go back to spin state. |
| philpem@3 | 306 | state <= ST_Spin; |
| philpem@3 | 307 | end |
| philpem@0 | 308 | end |
| philpem@0 | 309 | endcase |
| philpem@0 | 310 | end |
| philpem@0 | 311 | end |
| philpem@0 | 312 | |
| philpem@0 | 313 | endmodule |