Part 6 · Reset & CDC · Senior Prep
Reset & CDC
Reset strategies, synchronizers, async FIFOs, CDC handshakes, RDC, and verification — rtl/reset-cdc/<topic>.
What this section covers
Clock and reset domains are where silicon bugs hide . This section covers async reset release, 2-FF synchronizers, Gray-code FIFOs, and handshake CDC — with verification hooks.
Topics in this section
Reset strategies — async sync release, sequencing
Synchronizers — metastability and MTBF intuition
Async FIFO — Gray pointers and full/empty
CDC handshakes — req/ack and pulse crossing
Reset domain crossing — RDC pitfalls
CDC verification — structural checks and sim
CDC boundary
clk_A domain clk_B domain
[logic] ──► |sync| ──► |sync| ──► [logic]
2-FF chain (never sample async control directly)Key takeaways
Treat every clock crossing as a protocol — assume metastability.
Async FIFO Gray encoding is a senior interview staple.
Reset release must be synchronized per domain.
Related topics
Deep dive
This lesson deepens Reset & CDC within reset-cdc. Senior reviewers expect you to connect mechanism to metastability, Gray FIFOs, and reset sequencing — not just define terms.
Start from the spec invariant: what must always be true each cycle? Write it as a Boolean relation, timing budget, or protocol rule before coding. That invariant becomes your reference model, assertion, or waveform check.
At tape-out quality, every block needs a sign-off story: CDC structural sign-off, synchronized resets. Treat this lesson as building one paragraph of that story for your project documentation.
Architecture and signal flow
RESET & CDC
inputs ──► [reset-cdc] ──► mechanism ──► outputs
│ │
reset-cdc verify in sim + lintWorked example (Verilog/SystemVerilog)
Synthesizable pattern for this topic — simulate locally and compare against your reference.
// reset-cdc/reset-cdc: Reset & CDC
module example;
logic clk, rst_n;
initial begin
clk = 0; forever #5 clk = ~clk;
end
endmoduleStep-by-step design procedure
Write the spec invariant (truth table, timing, or protocol rule).
Sketch block diagram — inputs, outputs, clock/reset domains.
Code the minimal correct version (no optimizations yet).
Run self-checking TB with corners: min, max, reset, idle.
Lint and review: width, latch, clock, CDC if applicable.
Iterate for timing/area only after functionally proven.
Timing and resource trade-offs
METRIC TYPICAL LEVER
Logic levels algebra / pipelining
Register count retiming / sharing
Wire fanout duplication / pipeline
Power clock gating / operand isolation
Debug visibility status flags / SVA / waveform probesDebug checklist
Compare DUT vs reference on every stimulus vector
Capture first cycle of mismatch — not last
Log seed and plusargs for random regressions
Check reset release and clock alignment in TB
If waveform is ambiguous, add temporary assertions
Interview angle
Why 2-FF synchronizer — not 1 or 3?
MODEL ANSWER SKELETON
1. MECHANISM — one-sentence technical truth
2. MOTIVATION — why this structure vs alternatives
3. WHEN TO USE / SKIP — scope and assumptions
4. PITFALL — common junior mistake
5. EXAMPLE — Verilog or waveform scenarioPractice exercise
Extend the worked example for "Reset & CDC": add one corner case, write a self-checking test, and document one intentional pitfall you avoided. Timebox: 30–45 minutes.
Common pitfalls
Skipping reference model — passes wrong together with DUT.
Optimizing before correct — ECO cost goes up 10×.
Ignoring tool warnings — lint/CDC/STA warnings are technical debt.
Undocumented clock/reset domain — integration surprises.
Extended design scenario
Scenario for Reset & CDC : Reset glitch crosses domain — synchronize reset release.
Scenario resolution outline
Reproduce with minimal TB — one stimulus, one check.
Isolate failing cone (logic, FSM state, or bus beat).
Fix root cause — not symptom — in RTL or TB alignment.
Add regression test that fails without the fix.
Document invariant in comment or SVA for permanence.
Additional simulation pattern
// CDC sim: random clk phase offset
// assert no X on dst after resetSynthesis and sign-off notes
Elaborate clean — no OOM from unconstrained generate
Constraints cover all clocks and I/O delays
Cross-check RTL parameters vs integration top
Attach sim log + seed to code review
Lab exercise (45–60 min)
Implement or extend the worked example for "Reset & CDC". Add two new test vectors that target different branches. Write a one-paragraph sign-off note covering function, corners, and what you would still verify in SoC context.
Further reading in this course
Next topics in Part: follow nav_order in sidebar.
Cross-part: timing ↔ sequential, CDC ↔ senior interview,
combinational ↔ foundations number systems.