bus_trim
Component for trimming and distributing failure rates across the bus architecture (LPDDR5).
BusTrim
Bases: Base
Component for trimming and distributing failure rates across the bus architecture.
This module injects specific bus-related fault sources (AZ) and redistributes SBE, DBE, and TBE faults for both SPFM and LFM paths based on LPDDR5 specifications.
Source code in src/ecc_analyzer/models/lpddr5/bus_trim.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | |
__init__(name)
Initializes the BusTrim component with bus-specific split parameters.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
The descriptive name of the component. |
required |
Source code in src/ecc_analyzer/models/lpddr5/bus_trim.py
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | |
configure_blocks()
Configures the root block as a collection of fault injections and split operations.
Uses a SumBlock to aggregate the source injection (AZ) and the parallel redistribution (SplitBlocks) of incoming faults.
Source code in src/ecc_analyzer/models/lpddr5/bus_trim.py
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | |