infant defect
**Infant defect** is a **manufacturing defect caught during early testing phases** — typically detected during wafer probe, package test, or burn-in, representing defects that would cause immediate or early-life failures if shipped to customers.
**What Is an Infant Defect?**
- **Definition**: Defect detected in initial testing stages.
- **Timing**: Found during wafer probe, final test, or burn-in.
- **Cause**: Manufacturing process issues, contamination, handling damage.
- **Impact**: Reduces yield but prevents field failures.
**Why Infant Defects Matter**
- **Yield Loss**: Directly reduces manufacturing yield and revenue.
- **Cost Indicator**: High infant defect rate signals process problems.
- **Quality Gate**: Catching these prevents customer returns.
- **Process Health**: Infant defect trends indicate process stability.
- **Learning**: Analysis drives process improvements.
**Detection Stages**
**Wafer Probe**: First electrical test, catches gross defects (shorts, opens, non-functional devices).
**Package Test**: Post-assembly test, catches assembly-induced defects.
**Burn-in**: Extended stress test, catches marginal devices and latent defects.
**Final Test**: Comprehensive functional and parametric testing.
**Common Infant Defect Types**
**Electrical Shorts**: Metal bridging, particle-induced shorts.
**Opens**: Broken interconnects, missing vias/contacts.
**Parametric Failures**: Out-of-spec voltage, current, speed.
**Functional Failures**: Logic errors, memory bit failures.
**Leakage**: Excessive current draw indicating defects.
**Bathtub Curve**
```
Failure Rate
|
| Infant Useful Life Wear-out
| Mortality (Random) (Aging)
| \___________________/‾‾‾‾‾
|
+--------------------------------> Time
Infant defects cause high early failure rate
```
**Root Cause Categories**
**Process Defects**: Lithography, etch, deposition, CMP issues.
**Contamination**: Particles, chemical residues, moisture.
**Equipment**: Tool malfunctions, calibration drift.
**Materials**: Defective wafers, chemicals, gases.
**Handling**: Wafer breakage, scratches, ESD damage.
**Assembly**: Wire bond failures, die attach voids, package cracks.
**Analysis Methods**
```python
def analyze_infant_defects(test_data, process_data):
"""
Analyze infant defect patterns to identify root causes.
"""
# Yield by test stage
wafer_probe_yield = test_data.wafer_probe_pass_rate()
final_test_yield = test_data.final_test_pass_rate()
burn_in_yield = test_data.burn_in_pass_rate()
# Spatial analysis
wafer_map = test_data.generate_wafer_map()
spatial_pattern = analyze_spatial_clustering(wafer_map)
# Temporal trends
defect_trend = test_data.defects_over_time()
# Pareto analysis
defect_types = test_data.group_by_failure_mode()
top_defects = pareto_analysis(defect_types, top_n=5)
# Process correlation
correlations = correlate_defects_with_process(
test_data, process_data
)
return {
'yields': {'probe': wafer_probe_yield, 'final': final_test_yield},
'spatial': spatial_pattern,
'trends': defect_trend,
'top_defects': top_defects,
'root_causes': correlations
}
```
**Screening Effectiveness**
**Wafer Probe**: Catches 60-80% of infant defects.
**Final Test**: Catches additional 15-25%.
**Burn-in**: Catches remaining 5-15% (marginal devices).
**Total**: >99% of infant defects caught before shipment.
**Best Practices**
- **Comprehensive Testing**: Multi-stage testing to catch different defect types.
- **Rapid Feedback**: Quick analysis and feedback to process engineers.
- **Pareto Focus**: Address top defect types first for maximum yield improvement.
- **Trend Monitoring**: Track defect rates over time to catch process drift.
- **Root Cause Analysis**: Systematic investigation of each defect type.
**Yield Impact**
```
Wafer Probe Yield: 85-95% (catches most infant defects)
Final Test Yield: 95-99% (catches assembly and marginal defects)
Burn-in Yield: 98-99.9% (catches latent and progressive defects)
Overall Yield = Probe × Final × Burn-in
```
**Cost Considerations**
- **Early Detection**: Cheaper to catch at wafer probe than after packaging.
- **Burn-in Cost**: Expensive but prevents field failures.
- **Yield Loss**: Lost revenue from scrapped devices.
- **Rework**: Some defects can be repaired (laser repair, re-programming).
Infant defects are **the primary yield detractors** — catching them early through comprehensive testing prevents field failures while providing valuable feedback for continuous process improvement and yield enhancement.