Interface Protocols · All levels

Protocol Waveform Debug: Worked Example

Worked Example for Protocol Waveform Debug.

Worked example

Worked Example for Protocol Waveform Debug focuses on debug turnaround time, root-cause classification, rerun pass rate. The goal is to connect the observable symptom to protocol mechanism, ownership, and regression risk.

A product workload shows debug turnaround time, root-cause classification, rerun pass rate. The first review mistake is to blame the whole interface. A better review starts by pinning one transaction, proving where protocol progress stopped, and checking whether the observed behavior is legal for Protocol Waveform Debug.

Sequence under inspection

diagram
SEQUENCE — Protocol Waveform Debug

  initiator            interconnect/PHY            target
      |  request (id) ------->  |                     |
      |                         |  forward ----------> |
      |                         |                     | work
      |                         |  <---- response ---- |
      |  <----- complete ------ |                     |
      |
   metric captured here: debug turnaround time, root-cause classification, rerun pass rate

Waveform debug reconstruction

diagram
RECONSTRUCT INTENT FROM SIGNALS

step 1: find first anomaly timestamp (T0)
step 2: scroll BACK to the request that started it
step 3: annotate id/addr on every related signal
step 4: mark where progress should have happened but did not
step 5: compare with the spec timing for that exact transaction

T-2   T-1   T0(bad)   T+1
 |     |      |         |
req  grant  (no resp)  timeout
        ^ root cause lives here, not at the timeout
  1. Capture the failing waveform and transaction log.

  2. Tag the request ID, address, endpoint, or lane.

  3. Find the first response, retry, stall, or missing completion.

  4. Compare against annotated waveform, transaction timeline, root-cause note.

  5. Choose one reversible fix and write the regression list before editing RTL or firmware.

Did the fix work?

diagram
BEFORE / AFTER — Protocol Waveform Debug

           failing        target
metric  |    ●              ┄┄┄┄┄┄┄
        |     \
        |      \___ ● bounded fix
        |           \
        |            ● validated
        +-------------------------------> change set
Prove the mechanism moved the metric; one good dot is not proof.

Protocol deep dive

Verification closes the gap between 'works in directed test' and 'legal under all stressed traffic'.

Concept diagram

diagram
VERIFICATION CLOSURE LOOP

spec clause -> test -> assertion -> coverage -> waiver -> signoff
                  ^                           |
                  +--------- gap found --------+

Metric graph

diagram
COVERAGE vs ESCAPE RATE

escapes
  |*
  | *
  |  *
  |   **  <- knee: more random helps
  |     ****
  +----------------> constrained-random depth

Metrics and artifacts to collect

  • compliance pass rate

  • coverage closure

  • scoreboard mismatch rate

  • assertion fire count

  • waiver log

Mini case study

Block passed VIP compliance but chip failed: system test omitted cross-master ID reuse through a bridge. Scoreboard key did not include upstream port ID.

Debug branches

  • If VIP pass but silicon fail, check integration assumptions.

  • If scoreboard noisy, fix key (ID+port+addr).

  • If coverage plateau, add compliance gap analysis not more repeats.

Senior review question

Ask: what is the first transaction that deviates, and which spec rule does it test?

Key takeaways

  • Connect every protocol claim to a transaction identity and measurable metric.

  • Store the artifact (waveform, log, counter) next to every signoff decision.

Common pitfalls

  • Debugging timeouts without finding the first bad transaction.

  • Quoting peak bus width without payload efficiency and retry overhead.

  • Treating VIP compliance as a substitute for system integration replay.

Narrative walkthrough

A team sees debug turnaround time, root-cause classification, rerun pass rate drop 40% after a seemingly small change near Protocol Waveform Debug.

They almost widen the interface. Instead they capture id=7 read burst and find W beats never matched AW len.