DRAM & Memory Design · All levels

Request Queues, Reorder Windows, and Bank-Level Parallelism: Mechanism

Mechanism for Request Queues, Reorder Windows, and Bank-Level Parallelism.

Mechanism to understand

Mechanism for Request Queues, Reorder Windows, and Bank-Level Parallelism focuses on P95/P99 memory access latency versus sustained bandwidth under mixed read/write traffic.. The purpose is to turn memory observations into mechanism-backed actions with explicit owners and release-safe validation.

A modern memory controller decouples ingress order from DRAM command issue order through per-channel request queues, rank/bank tracking, and a bounded reorder window. Incoming transactions are first classified by address mapping (channel, rank, bank-group, bank, row, column) and direction (read/write), then inserted into scheduling structures that preserve correctness constraints such as fences, hazards, and ordering domains while still exposing parallelism. Reordering works by pulling forward requests that target currently available banks or already-open rows, while delaying requests that would immediately cause row conflicts, bus turnarounds, or timing violations. The usable gain depends on queue depth and address entropy: too little depth cannot find parallel work, while too much depth can increase head-of-line latency for unlucky flows and make QoS guarantees harder. Effective scheduling therefore combines bank-state prediction, timing-wheel legality checks, and starvation control so the controller increases throughput without letting tail latency explode. Treat this as a DRAM service pipeline, not an isolated block behavior. Traffic shape, command legality, queue policy, and margin dynamics all contribute to final latency and throughput.

A strong mechanism explanation names the first repeated transition that creates loss, then explains why that transition persists under the current workload and policy constraints.

  • Name the first failing transition and where it appears in timeline.

  • Separate symptom counters from causal mechanism evidence.

  • Assign owner who can apply smallest reversible fix.

Cell and sensing lens

diagram
DRAM CELL DIAGRAM - Request Queues, Reorder Windows, and Bank-Level Parallelism

                bitline (BL)
                    |
           +--------+--------+
wordline --| access transistor|-- storage capacitor (Ccell)
           +--------+--------+
                    |
                  ground

Read:   BL precharge -> WL on -> tiny delta-V -> sense amp amplifies
Write:  drive BL -> WL on -> charge/discharge Ccell -> WL off

Focus: sense, restore, and retention limits
Metric tracked: P95/P99 memory access latency versus sustained bandwidth under mixed read/write traffic.

Array and bank lens

diagram
ARRAY HIERARCHY MAP - Request Queues, Reorder Windows, and Bank-Level Parallelism

[Channel]
   |
[DIMM/Package]
   |
[Rank]
   |
[Bank Group]
   |
[Bank]
   |
[Subarray]
   |
[Row + Column Decode]
   |
[Cell Mat + Sense Amps]

Lens: map locality decisions to activate/precharge cost.

Scheduler queue pipeline (Request Queues And Reorder)

diagram
MEMORY CONTROLLER REQUEST PIPELINE

Ingress -> classify(addr,map,dir,class) -> enqueue -> pick -> command issue
              |                              |
              |                              +-- reorder window (N entries)
              |
              +-- queues:
                    [HiPri RQ]  [BestEffort RQ]  [WriteQ]
                         |             |           |
                         +------ arbitration ------+
                                       |
                               legal-if timing wheel passes

FR-FCFS selection with bank states (Request Queues And Reorder)

diagram
FR-FCFS DECISION VIEW (simplified)

Bank state table:
Bank0: open row 120  ready-for-CAS at t=42
Bank1: open row 087  row-miss for reqX (needs PRE+ACT)
Bank2: idle          can ACT at t=40

Queue head candidates:
reqA -> Bank1 row-miss (oldest)
reqB -> Bank0 row-hit  (younger, ready now)
reqC -> Bank2 row-miss

Pick rule:
1) First-ready wins (reqB now)
2) Among ready ties, oldest first
3) Aging/QoS guard prevents indefinite starvation

QoS + refresh-aware arbitration (Request Queues And Reorder)

diagram
ARBITRATION TIMELINE WITH REFRESH

time ---> --------------------------------------------------------------->
HiPri class     H1 ---- H2 -- H3 ----------- H4 ----
BestEffort      B1 - B2 ---- B3 ---- B4 ---- B5 ----
Refresh need          r_due..................(deadline)
Scheduler       serve H, then opportunistic B, insert REF before violation

Policy layers:
1) Hard safety: refresh/retention deadlines always met.
2) SLA tiering: critical traffic latency bounds.
3) Fairness/aging: lower classes eventually drain.

DRAM deep dive

Controller policy decides whether DRAM serves locality, fairness, and QoS targets simultaneously.

Concept diagram

diagram
CONTROLLER SCHEDULING LOOP

request queues -> row-policy + priority -> command issue -> bank state update

Metric graph

diagram
QUEUE PRESSURE MIX

row-hit preference bias ██████
aging/fairness pressure █████
QoS override cost       ███

Reports and artifacts

  • scheduler policy comparison

  • queue age distribution

  • starvation/fairness incident report

  • QoS latency percentile dashboard

Mini case study

FR-FCFS tuning improved bulk throughput but starved latency-critical traffic until age caps and class quotas were added.

Debug branches

  • Measure queue age tails by traffic class

  • Separate row-hit gains from fairness regressions

  • Stress policy under mixed burst and random streams

Senior review question

Ask: which latency, bandwidth, and reliability evidence proves this DRAM topic is closed under real traffic?

Key takeaways

  • Always tie controller and PHY counter shifts to application latency and throughput outcomes.

  • Lock firmware timing profile, thermal condition, and DIMM state before comparing DRAM captures.

Common pitfalls

  • Chasing peak bandwidth while ignoring p99 latency and fairness tails.

  • Changing timing guardbands without separating SI noise from scheduling issues.

  • Declaring closure without reliability gates, fault injection, and regression replay.

Mechanism deep dive

Request Queues, Reorder Windows, and Bank-Level Parallelism should be read as an end-to-end memory behavior, not as a single block definition. A production DRAM subsystem reflects interactions between array physics, command legality, scheduler policy, PHY margin, and reliability controls before software experiences final latency or bandwidth.

A modern memory controller decouples ingress order from DRAM command issue order through per-channel request queues, rank/bank tracking, and a bounded reorder window. Incoming transactions are first classified by address mapping (channel, rank, bank-group, bank, row, column) and direction (read/write), then inserted into scheduling structures that preserve correctness constraints such as fences, hazards, and ordering domains while still exposing parallelism. Reordering works by pulling forward requests that target currently available banks or already-open rows, while delaying requests that would immediately cause row conflicts, bus turnarounds, or timing violations. The usable gain depends on queue depth and address entropy: too little depth cannot find parallel work, while too much depth can increase head-of-line latency for unlucky flows and make QoS guarantees harder. Effective scheduling therefore combines bank-state prediction, timing-wheel legality checks, and starvation control so the controller increases throughput without letting tail latency explode. DRAM inefficiency is multiplicative: one extra ACTIVATE, one unnecessary turnaround, one weak lane margin, or one refresh collision repeated across billions of accesses can dominate product tail latency and power.

Use P95/P99 memory access latency versus sustained bandwidth under mixed read/write traffic. as the opening signal, not the conclusion. A metric move only becomes actionable when paired with workload context, command traces, training telemetry, and evidence artifacts such as Scheduler trace report with queue occupancy, bank-state transitions, reorder distance histogram, and latency-percentile breakdown..

Memory-controller quality is measured by throughput and tail predictability under mixed traffic, not average bandwidth alone. Senior review quality comes from proving a complete chain: request pattern -> memory-state transition -> bottleneck mechanism -> smallest owner fix -> regression-safe validation.

Mechanism detail: A modern memory controller decouples ingress order from DRAM command issue order through per-channel request queues, rank/bank tracking, and a bounded reorder window. Incoming transactions are first classified by address mapping (channel, rank, bank-group, bank, row, column) and direction (read/write), then inserted into scheduling structures that preserve correctness constraints such as fences, hazards, and ordering domains while still exposing parallelism. Reordering works by pulling forward requests that target currently available banks or already-open rows, while delaying requests that would immediately cause row conflicts, bus turnarounds, or timing violations. The usable gain depends on queue depth and address entropy: too little depth cannot find parallel work, while too much depth can increase head-of-line latency for unlucky flows and make QoS guarantees harder. Effective scheduling therefore combines bank-state prediction, timing-wheel legality checks, and starvation control so the controller increases throughput without letting tail latency explode.

Read Request Queues, Reorder Windows, and Bank-Level Parallelism as a loop: requests enter arbitration, transform into legal command streams, interact with bank/row state, and return as latency and reliability outcomes visible to software.

Frequent failure pattern: local improvement with global regression. A row-hit win can still hurt QoS if fairness collapses; tighter timing can still fail if margin is consumed by SI or thermal drift.