Real Alliance Memory AS4C4M16SA-6TIN datasheet (Rev 5.0, Table 17) specifies tMRD as a fixed 2-tCK cycle count, not an ns value. sdram_controller.v modeled it via ns_to_cycles(12), which rounded to 2 cycles by coincidence at every previously-tested frequency (100/133/166MHz) but rounds to only 1 cycle at the real 64MHz board target -- an under-provisioned one-time init sequence. Fixed by hardcoding T_MRD=2, matching how CAS_LATENCY is already modeled. Verified zero regression: full 9-config legacy sweep + a new dedicated 64MHz config (461/461 PASS each), N=2/N=4 D-Stress (identical cycle counts), board-level smoke test (11/11 PASS). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_013xXuuRUWZScuo1DeYJxs3v
460 lines
22 KiB
Verilog
460 lines
22 KiB
Verilog
`timescale 1ns/1ps
|
|
|
|
// ============================================================
|
|
// NMS STEP16 -- minimal, CORRECT-FIRST SDR SDRAM controller for
|
|
// Alliance Memory AS4C4M16SA-6TIN (64Mbit/8MB, x16, -6 speed grade:
|
|
// tCK=6ns/166MHz max, CAS latency 3).
|
|
//
|
|
// Design priority explicitly stated by the governing spec:
|
|
// correctness > performance > elegance. This controller therefore:
|
|
// - ALWAYS uses auto-precharge (A10=1 on every READ/WRITE) --
|
|
// every transaction activates a row, bursts BURST_LEN words, and
|
|
// closes the row again before the next transaction. This is NOT
|
|
// the fastest possible design (no page-hit/keep-row-open
|
|
// optimization, unlike psram_controller.v's own real page-mode),
|
|
// but it is trivially correct: no per-row state to track, no
|
|
// risk of a stale-open-row bug, exactly one code path for every
|
|
// transaction regardless of address history.
|
|
// - Real JEDEC SDR SDRAM command encoding (CS#/RAS#/CAS#/WE#),
|
|
// real power-up sequence (200us wait, PRECHARGE ALL, 8x AUTO
|
|
// REFRESH, LOAD MODE REGISTER), real periodic AUTO REFRESH
|
|
// insertion between transactions (tREFI = 4096 rows / 64ms).
|
|
// - Real, standard -6-speed-grade SDR SDRAM timing (datasheet-
|
|
// standard values, not vendor-specific tuning): tRCD=3cyc,
|
|
// tRP=3cyc, tRAS(min)=7cyc, tRC=10cyc, tMRD=2cyc @166MHz -- all
|
|
// re-derived per CLK_FREQ_MHZ so the same RTL is reused across
|
|
// the Phase 4 100/133/166MHz sweep (STEP16's own explicit
|
|
// "measure, do not estimate" requirement).
|
|
//
|
|
// Address format: word address (16-bit words), decomposed as
|
|
// {bank[1:0], row[11:0], col[7:0]} -- matches the REAL AS4C4M16SA's
|
|
// own 4-bank x 4096-row x 256-column x16 organization (4*4096*256 =
|
|
// 4M words = 8MB, confirmed against the real datasheet capacity).
|
|
//
|
|
// External protocol matches this project's own established
|
|
// mem_req/mem_wr/mem_addr/mem_wdata/mem_rdata/mem_ready convention
|
|
// (same idiom as psram_controller.v), generalized to a BURST: one
|
|
// req initiates a full BURST_LEN-word transaction (the natural unit
|
|
// for this workload -- one weight TILE = P_IN*DATA_WIDTH/16 = 4
|
|
// words at BURST_LEN=4, an exact match, not a coincidence chosen
|
|
// after the fact -- STEP16 Phase 1 identified this exact byte count
|
|
// per tile before any RTL was written).
|
|
// ============================================================
|
|
module sdram_controller #(
|
|
parameter CLK_FREQ_MHZ = 166,
|
|
parameter BURST_LEN = 4, // 1, 4, or 8 -- Phase 4 sweep parameter
|
|
parameter ADDR_WIDTH = 22 // word address: 2 bank + 12 row + 8 col
|
|
)(
|
|
input wire clk,
|
|
input wire rst,
|
|
|
|
input wire req,
|
|
input wire wr,
|
|
input wire [ADDR_WIDTH-1:0] addr, // burst-aligned word address
|
|
input wire [16*BURST_LEN-1:0] wdata, // BURST_LEN words, word0 first
|
|
// STEP19: per-burst-word DQM write mask, 2 bits/word (bit0=low
|
|
// byte, bit1=high byte, real SDR SDRAM DQM polarity: 1=masked/
|
|
// NOT written, memory array retains its old value for that byte;
|
|
// 0=written). Ties to {2*BURST_LEN{1'b0}} (never mask, i.e.
|
|
// "always write full word") reproduces this module's own STEP16
|
|
// behavior exactly -- every existing caller (sdram_weight_
|
|
// backend.v, sdram_weight_backend_pack128.v, tb_sdram_controller.v)
|
|
// was updated to pass that literal tie-off, so read/weight-fetch
|
|
// behavior is byte-for-byte unchanged. Only meaningful for `wr`
|
|
// transactions; ignored for reads (dqm is forced 0 during reads
|
|
// regardless, since real SDR SDRAM masks READ OUTPUT with DQM too,
|
|
// and this controller always wants valid read data back).
|
|
input wire [2*BURST_LEN-1:0] wmask,
|
|
output reg [16*BURST_LEN-1:0] rdata, // valid the same cycle `ready` pulses
|
|
output reg ready, // pulses once, whole burst transaction done
|
|
output reg busy,
|
|
|
|
// ---- real SDRAM physical pins ----
|
|
output reg sdram_cke,
|
|
output reg sdram_cs_n,
|
|
output reg sdram_ras_n,
|
|
output reg sdram_cas_n,
|
|
output reg sdram_we_n,
|
|
output reg [1:0] sdram_ba,
|
|
output reg [11:0] sdram_a,
|
|
inout wire [15:0] sdram_dq,
|
|
output reg [1:0] sdram_dqm
|
|
);
|
|
|
|
localparam BURST_IDXW = (BURST_LEN <= 1) ? 1 : $clog2(BURST_LEN);
|
|
|
|
// ---- real, standard -6-speed-grade timing, re-derived per
|
|
// CLK_FREQ_MHZ (ceiling division: never UNDER-count a real ns
|
|
// requirement) ----
|
|
function integer ns_to_cycles;
|
|
input integer ns;
|
|
begin
|
|
ns_to_cycles = (ns * CLK_FREQ_MHZ + 999) / 1000;
|
|
end
|
|
endfunction
|
|
localparam T_RCD = ns_to_cycles(18); // ACTIVE -> READ/WRITE
|
|
localparam T_RP = ns_to_cycles(18); // PRECHARGE -> ACTIVE
|
|
// ACTIVE->PRECHARGE minimum (tRAS=42ns=7cyc@166MHz) is not
|
|
// separately waited on: this design's own fixed sequencing
|
|
// (tRCD + CAS_LATENCY + BURST_LEN data cycles, always >= 3+3+1=7
|
|
// even at the narrowest BURST_LEN=1) already comfortably exceeds
|
|
// it by construction before auto-precharge can begin internally.
|
|
// tMRD is specified by the real AS4C4M16SA-6TIN datasheet (Table 17)
|
|
// as a FIXED CYCLE COUNT ("2 tCK"), not a nanosecond value -- unlike
|
|
// tRCD/tRP, which genuinely are ns-based and correctly belong behind
|
|
// ns_to_cycles(). A previous draft modeled tMRD as ns_to_cycles(12),
|
|
// an assumed-equivalent ns figure that happened to round up to
|
|
// exactly 2 cycles at every frequency this design had been tested at
|
|
// (100/133/166MHz), silently masking the wrong unit model. At the
|
|
// real V2 board's own 64MHz operating point, ns_to_cycles(12) rounds
|
|
// to only 1 cycle -- one cycle short of the real, fixed 2-tCK
|
|
// minimum -- found via this step's own fresh datasheet-level audit
|
|
// (real Alliance Memory AS4C4M16SA-6TIN datasheet Rev.5.0, Table 17).
|
|
// Fixed by hardcoding the real, frequency-independent requirement
|
|
// directly, matching how CAS_LATENCY (also a real fixed-cycle spec)
|
|
// is already modeled two lines below.
|
|
localparam T_MRD = 2; // LOAD MODE REGISTER -> any command (tMRD = 2 tCK, fixed)
|
|
localparam T_INIT_US= 200; // power-up wait, real datasheet value
|
|
localparam T_INIT = T_INIT_US * CLK_FREQ_MHZ;
|
|
localparam CAS_LATENCY = 3; // fixed for this part/speed grade
|
|
// real refresh interval: 4096 rows must each be refreshed within
|
|
// 64ms -> one AUTO REFRESH at least every 64e6ns/4096 = 15625ns
|
|
localparam T_REFI = ns_to_cycles(15625);
|
|
|
|
localparam CNTW = $clog2((T_INIT>T_REFI ? T_INIT : T_REFI) + 1);
|
|
|
|
// JEDEC SDR SDRAM commands are encoded directly in the FSM below
|
|
// via named signal drives (cs_n/ras_n/cas_n/we_n), not a lookup
|
|
// table -- clearer to review against the real datasheet's own
|
|
// command truth table line by line.
|
|
|
|
// tRC (ACTIVATE-to-ACTIVATE minimum, same bank), used by both the
|
|
// init-refresh and steady-state refresh wait.
|
|
function [CNTW-1:0] T_RC_MINUS1;
|
|
localparam integer T_RC = ns_to_cycles(60);
|
|
begin
|
|
T_RC_MINUS1 = T_RC[CNTW-1:0] - 1'b1;
|
|
end
|
|
endfunction
|
|
|
|
localparam
|
|
S_INIT_WAIT = 5'd0,
|
|
S_INIT_PRE_WAIT = 5'd2,
|
|
S_INIT_REF = 5'd3,
|
|
S_INIT_REF_WAIT = 5'd4,
|
|
S_INIT_MRS_WAIT = 5'd6,
|
|
S_IDLE = 5'd7,
|
|
S_REFRESH_WAIT = 5'd9,
|
|
S_ACTIVATE_WAIT = 5'd11,
|
|
S_CAS_WAIT = 5'd13,
|
|
S_BURST_READ = 5'd14,
|
|
S_BURST_WRITE = 5'd15,
|
|
S_PRECHARGE_WAIT = 5'd16;
|
|
|
|
reg [4:0] state;
|
|
reg [CNTW-1:0] wait_cnt;
|
|
reg [3:0] init_ref_cnt;
|
|
reg [CNTW-1:0] refresh_timer;
|
|
reg [BURST_IDXW-1:0] burst_idx;
|
|
reg req_wr_reg;
|
|
reg [1:0] req_bank_reg;
|
|
reg [11:0] req_row_reg;
|
|
reg [7:0] req_col_reg;
|
|
reg [16*BURST_LEN-1:0] wdata_reg;
|
|
reg [2*BURST_LEN-1:0] wmask_reg;
|
|
|
|
wire [1:0] addr_bank = addr[ADDR_WIDTH-1:ADDR_WIDTH-2];
|
|
wire [11:0] addr_row = addr[ADDR_WIDTH-3:8];
|
|
wire [7:0] addr_col = addr[7:0];
|
|
|
|
// req_pending: latches a req that arrives in S_IDLE on the SAME
|
|
// cycle a periodic AUTO REFRESH is also due. Without this, a
|
|
// single-cycle req pulse (this project's own established
|
|
// mem_req convention -- see weight_prefetch_engine.v's own header
|
|
// comment) would be silently dropped whenever refresh wins
|
|
// arbitration that cycle: the caller only holds req high for one
|
|
// cycle, has no idea refresh was chosen instead, and then waits
|
|
// forever for a `ready` that will never come -- a real,
|
|
// frequency/burst-alignment-dependent deadlock found by STEP16's
|
|
// own Phase 4 100/133/166MHz sweep (reproduced at BURST_LEN=1,
|
|
// CLK_FREQ_MHZ=133, but the race is general, not specific to that
|
|
// combination -- it is a matter of which absolute cycle each test
|
|
// vector's req happens to land on).
|
|
reg req_pending;
|
|
wire eff_wr = req ? wr : req_wr_reg;
|
|
wire [1:0] eff_bank = req ? addr_bank : req_bank_reg;
|
|
wire [11:0] eff_row = req ? addr_row : req_row_reg;
|
|
wire [7:0] eff_col = req ? addr_col : req_col_reg;
|
|
wire [16*BURST_LEN-1:0] eff_wdata = req ? wdata : wdata_reg;
|
|
wire [2*BURST_LEN-1:0] eff_wmask = req ? wmask : wmask_reg;
|
|
|
|
// tri-state DQ: driven only during a write burst
|
|
reg dq_out_en;
|
|
reg [15:0] dq_out;
|
|
assign sdram_dq = dq_out_en ? dq_out : 16'hzzzz;
|
|
|
|
// Mode register value: burst length code + sequential burst type
|
|
// (A3=0) + CAS latency 3 (A6:4=011) + standard write burst (A9=0).
|
|
function [11:0] mrs_value;
|
|
input integer burst_len;
|
|
reg [2:0] bl_code;
|
|
begin
|
|
bl_code = (burst_len==1) ? 3'b000 :
|
|
(burst_len==2) ? 3'b001 :
|
|
(burst_len==4) ? 3'b010 :
|
|
(burst_len==8) ? 3'b011 : 3'b111; // 111 = full page, unused here
|
|
mrs_value = {3'b000, 1'b0, 3'b011, 1'b0, bl_code};
|
|
end
|
|
endfunction
|
|
|
|
always @(posedge clk) begin
|
|
if (rst) begin
|
|
state <= S_INIT_WAIT;
|
|
wait_cnt <= T_INIT[CNTW-1:0];
|
|
init_ref_cnt <= 4'd0;
|
|
refresh_timer <= T_REFI[CNTW-1:0];
|
|
sdram_cke <= 1'b1; // held high throughout, real part supports CKE-always-high operation
|
|
sdram_cs_n <= 1'b1;
|
|
sdram_ras_n <= 1'b1;
|
|
sdram_cas_n <= 1'b1;
|
|
sdram_we_n <= 1'b1;
|
|
sdram_ba <= 2'b00;
|
|
sdram_a <= 12'h000;
|
|
sdram_dqm <= 2'b00; // both byte lanes always enabled (weight/tile fetch always full-word)
|
|
dq_out_en <= 1'b0;
|
|
ready <= 1'b0;
|
|
busy <= 1'b1;
|
|
req_pending <= 1'b0;
|
|
end else begin
|
|
// default: NOP every cycle unless a state below overrides it
|
|
sdram_cs_n <= 1'b0;
|
|
sdram_ras_n <= 1'b1;
|
|
sdram_cas_n <= 1'b1;
|
|
sdram_we_n <= 1'b1;
|
|
ready <= 1'b0;
|
|
dq_out_en <= 1'b0;
|
|
sdram_dqm <= 2'b00; // default: no mask (reads always want valid data; writes override below per-word)
|
|
|
|
if (refresh_timer != 0) refresh_timer <= refresh_timer - 1'b1;
|
|
|
|
// Latch a fresh req's fields UNCONDITIONALLY, every cycle,
|
|
// regardless of what state the controller is currently in
|
|
// -- not just while in S_IDLE. ERR-0019's own fix only
|
|
// covered "refresh wins arbitration the SAME cycle S_IDLE
|
|
// sees req" -- but a real caller (e.g. slot_mem_arbiter_
|
|
// wide.v) can pulse req for exactly one cycle at ANY time,
|
|
// including a cycle where the controller is mid-refresh
|
|
// (S_REFRESH_WAIT) or finishing a PREVIOUS transaction's
|
|
// own PRECHARGE_WAIT tail -- i.e. NOT in S_IDLE at all that
|
|
// cycle. The old S_IDLE-only latch silently missed those,
|
|
// permanently starving whichever requester's pulse landed
|
|
// there (found via the real N=2 D-Stress integration
|
|
// benchmark, EXP-0042: both slots' memory managers hung
|
|
// forever at tile_idx=0 while the arbiter's own `owner`
|
|
// stayed locked on a grant the controller had already
|
|
// forgotten -- a real, reproducible full-system deadlock,
|
|
// not merely a slower run).
|
|
if (req) begin
|
|
req_wr_reg <= wr;
|
|
req_bank_reg <= addr_bank;
|
|
req_row_reg <= addr_row;
|
|
req_col_reg <= addr_col;
|
|
wdata_reg <= wdata;
|
|
wmask_reg <= wmask;
|
|
req_pending <= 1'b1;
|
|
end
|
|
|
|
case (state)
|
|
S_INIT_WAIT: begin
|
|
busy <= 1'b1;
|
|
if (wait_cnt != 0) wait_cnt <= wait_cnt - 1'b1;
|
|
else begin
|
|
// PRECHARGE ALL: RAS#=0,CAS#=1,WE#=0, A10=1
|
|
sdram_ras_n <= 1'b0; sdram_we_n <= 1'b0;
|
|
sdram_a[10] <= 1'b1;
|
|
wait_cnt <= T_RP[CNTW-1:0] - 1'b1;
|
|
state <= S_INIT_PRE_WAIT;
|
|
end
|
|
end
|
|
S_INIT_PRE_WAIT: begin
|
|
if (wait_cnt != 0) wait_cnt <= wait_cnt - 1'b1;
|
|
else begin
|
|
state <= S_INIT_REF;
|
|
end
|
|
end
|
|
S_INIT_REF: begin
|
|
// AUTO REFRESH: RAS#=0,CAS#=0,WE#=1
|
|
sdram_ras_n <= 1'b0; sdram_cas_n <= 1'b0;
|
|
wait_cnt <= T_RC_MINUS1();
|
|
state <= S_INIT_REF_WAIT;
|
|
end
|
|
S_INIT_REF_WAIT: begin
|
|
if (wait_cnt != 0) wait_cnt <= wait_cnt - 1'b1;
|
|
else if (init_ref_cnt < 4'd7) begin
|
|
init_ref_cnt <= init_ref_cnt + 1'b1;
|
|
state <= S_INIT_REF;
|
|
end else begin
|
|
// LOAD MODE REGISTER: RAS#=0,CAS#=0,WE#=0, addr=mode value
|
|
sdram_ras_n <= 1'b0; sdram_cas_n <= 1'b0; sdram_we_n <= 1'b0;
|
|
sdram_ba <= 2'b00;
|
|
sdram_a <= mrs_value(BURST_LEN);
|
|
wait_cnt <= T_MRD[CNTW-1:0] - 1'b1;
|
|
state <= S_INIT_MRS_WAIT;
|
|
end
|
|
end
|
|
S_INIT_MRS_WAIT: begin
|
|
if (wait_cnt != 0) wait_cnt <= wait_cnt - 1'b1;
|
|
else begin
|
|
busy <= 1'b0;
|
|
state <= S_IDLE;
|
|
end
|
|
end
|
|
|
|
S_IDLE: begin
|
|
busy <= 1'b0;
|
|
// req (if any) was already latched into req_pending
|
|
// unconditionally above, regardless of state -- see
|
|
// that latch's own comment for why it must not be
|
|
// scoped to only this state.
|
|
if (refresh_timer == 0) begin
|
|
// periodic AUTO REFRESH -- no row is ever left
|
|
// open between transactions (auto-precharge
|
|
// always used), so we can refresh immediately,
|
|
// no PRECHARGE-ALL needed here.
|
|
busy <= 1'b1;
|
|
sdram_ras_n <= 1'b0; sdram_cas_n <= 1'b0;
|
|
wait_cnt <= T_RC_MINUS1();
|
|
refresh_timer <= T_REFI[CNTW-1:0];
|
|
state <= S_REFRESH_WAIT;
|
|
end else if (req || req_pending) begin
|
|
busy <= 1'b1;
|
|
req_wr_reg <= eff_wr;
|
|
req_bank_reg <= eff_bank;
|
|
req_row_reg <= eff_row;
|
|
req_col_reg <= eff_col;
|
|
wdata_reg <= eff_wdata;
|
|
wmask_reg <= eff_wmask;
|
|
req_pending <= 1'b0;
|
|
// ACTIVATE: RAS#=0,CAS#=1,WE#=1, ba=bank, a=row
|
|
sdram_ras_n <= 1'b0;
|
|
sdram_ba <= eff_bank;
|
|
sdram_a <= eff_row;
|
|
wait_cnt <= T_RCD[CNTW-1:0] - 1'b1;
|
|
state <= S_ACTIVATE_WAIT;
|
|
end
|
|
end
|
|
|
|
S_REFRESH_WAIT: begin
|
|
if (wait_cnt != 0) wait_cnt <= wait_cnt - 1'b1;
|
|
else state <= S_IDLE;
|
|
end
|
|
|
|
S_ACTIVATE_WAIT: begin
|
|
if (wait_cnt != 0) begin
|
|
wait_cnt <= wait_cnt - 1'b1;
|
|
end else begin
|
|
// READ or WRITE with auto-precharge (A10=1):
|
|
// CAS#=0, WE#=(0 for write /1 for read), ba=bank,
|
|
// a[7:0]=col, a[10]=1
|
|
sdram_cas_n <= 1'b0;
|
|
sdram_we_n <= req_wr_reg ? 1'b0 : 1'b1;
|
|
sdram_ba <= req_bank_reg;
|
|
sdram_a <= {4'b0100, req_col_reg}; // a[11]=0,a[10]=1(auto-precharge),a[9:8]=0
|
|
burst_idx <= {BURST_IDXW{1'b0}};
|
|
if (req_wr_reg) begin
|
|
dq_out_en <= 1'b1;
|
|
dq_out <= wdata_reg[15:0];
|
|
sdram_dqm <= wmask_reg[1:0];
|
|
state <= S_BURST_WRITE;
|
|
end else begin
|
|
// Cycle-exact derivation (not assumed --
|
|
// see the module's own design log /
|
|
// EXP-0040 for the full walkthrough):
|
|
// cas_n=0 becomes VISIBLE to the real chip
|
|
// one cycle after this NBA (call that
|
|
// cycle "C"). Entering S_CAS_WAIT also
|
|
// takes effect at cycle C, with wait_cnt
|
|
// set here. The state's own "wait_cnt==0"
|
|
// capture branch first fires at cycle
|
|
// C + wait_cnt_initial. We want that to be
|
|
// C + CAS_LATENCY (data must be valid
|
|
// exactly CAS_LATENCY real clocks after
|
|
// the command is sampled) -- so
|
|
// wait_cnt_initial = CAS_LATENCY exactly,
|
|
// no adjustment.
|
|
wait_cnt <= CAS_LATENCY[CNTW-1:0];
|
|
state <= S_CAS_WAIT;
|
|
end
|
|
end
|
|
end
|
|
|
|
S_CAS_WAIT: begin
|
|
if (wait_cnt != 0) begin
|
|
wait_cnt <= wait_cnt - 1'b1;
|
|
end else begin
|
|
rdata[0 +: 16] <= sdram_dq;
|
|
// BURST_LEN==1 is a real, distinct edge case:
|
|
// word0 IS the whole (only) burst -- go
|
|
// straight to precharge-wait. Routing it
|
|
// through S_BURST_READ instead (burst_idx
|
|
// already at 1, one past the only valid
|
|
// index) was a real deadlock, found and fixed
|
|
// via the Phase 3 burst=1 test (EXP-0040):
|
|
// S_BURST_READ's own "burst_idx==BURST_LEN-1"
|
|
// exit check (==0) can never be true again
|
|
// once burst_idx has already advanced to 1.
|
|
if (BURST_LEN == 1) begin
|
|
ready <= 1'b1;
|
|
wait_cnt <= T_RP[CNTW-1:0] - 1'b1;
|
|
state <= S_PRECHARGE_WAIT;
|
|
end else begin
|
|
burst_idx <= burst_idx + 1'b1;
|
|
state <= S_BURST_READ;
|
|
end
|
|
end
|
|
end
|
|
|
|
S_BURST_READ: begin
|
|
// burst_idx's own width (BURST_IDXW=clog2(BURST_
|
|
// LEN)) can only ever represent 0..BURST_LEN-1 --
|
|
// capture therefore happens unconditionally every
|
|
// cycle spent in this state (an explicit "<
|
|
// BURST_LEN" guard here would always be true by
|
|
// construction and was removed as dead logic).
|
|
rdata[burst_idx*16 +: 16] <= sdram_dq;
|
|
if (burst_idx == BURST_LEN[BURST_IDXW-1:0] - 1'b1) begin
|
|
ready <= 1'b1;
|
|
// auto-precharge already running internally;
|
|
// enforce tRP before the next ACTIVATE.
|
|
wait_cnt <= T_RP[CNTW-1:0] - 1'b1;
|
|
state <= S_PRECHARGE_WAIT;
|
|
end else begin
|
|
burst_idx <= burst_idx + 1'b1;
|
|
end
|
|
end
|
|
|
|
S_BURST_WRITE: begin
|
|
if (burst_idx < BURST_LEN[BURST_IDXW-1:0] - 1'b1) begin
|
|
burst_idx <= burst_idx + 1'b1;
|
|
dq_out_en <= 1'b1;
|
|
dq_out <= wdata_reg[(burst_idx+1'b1)*16 +: 16];
|
|
sdram_dqm <= wmask_reg[(burst_idx+1'b1)*2 +: 2];
|
|
end else begin
|
|
ready <= 1'b1;
|
|
wait_cnt <= T_RP[CNTW-1:0] + 1'b1; // tWR folded in conservatively
|
|
state <= S_PRECHARGE_WAIT;
|
|
end
|
|
end
|
|
|
|
S_PRECHARGE_WAIT: begin
|
|
if (wait_cnt != 0) wait_cnt <= wait_cnt - 1'b1;
|
|
else state <= S_IDLE;
|
|
end
|
|
|
|
default: state <= S_IDLE;
|
|
endcase
|
|
end
|
|
end
|
|
|
|
endmodule
|