Home Knowledge Base 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?

Why Infant Defects Matter

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

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

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

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.

infant defectmanufacturing

Explore 500+ Semiconductor & AI Topics

From EUV lithography to CUDA optimization — search the full knowledge base or chat with our AI assistant.