<?xml version="1.0" encoding="UTF-8"?>
<!--
    EOL IPs XML File Format
    
    This file lists IPs that have reached End of Life (EOL) and are no longer supported.
    
    Structure:
    - Root element: <EolIps>
    - Each EOL IP: <EolIp> with:
        - name attribute (required): Display name of the IP
        - module_name attribute (required): Module name for matching (iplibrary_name format, e.g., "sgmii")
        - removal_version attribute (optional): Radiant version when IP will be removed (e.g., "2026.2")
        - replacement_ip attribute (optional): Replacement IP name if consolidated
        - final_update_version attribute (optional): Final update version (e.g., "2024.2 (v1.7.1)")
    - Versions: <Version> elements with value attribute or text content
      - If no versions are specified, all versions of the IP are considered EOL
      - If versions are specified, only those versions are EOL
    
    Example:
-->
<EolIps>    
    <EolIp name="SGMII and Gb Ethernet PCS" module_name="sgmii"
		   min_radiant_version="2024.2"
           removal_version="2026.2" 
           replacement_ip="Tri-Speed Ethernet IP Core"
           final_update_version="2024.2 (v1.7.1)">
    </EolIp>    
    
    <EolIp name="10G Ethernet MAC" module_name="ten_gbe_mac"
	       min_radiant_version="2024.2"
           removal_version="2026.2"
           replacement_ip="10G Ethernet IP Core">
        <Version value="1.0.0"/>
        <Version value="1.1.0"/>
    </EolIp>
    
    <EolIp name="10G Ethernet PCS" module_name="ten_gbe_pcs"
           min_radiant_version="2024.1"
		   removal_version="2026.2"
           replacement_ip="10G Ethernet IP Core">
        <Version value="1.0.0"/>
        <Version value="1.1.0"/>
        <Version value="1.3.0"/>
    </EolIp>
    
    <EolIp name="DDR3 SDRAM PHY" module_name="ddr3_phy"
           min_radiant_version="2024.1"
		   removal_version="2026.2"
           replacement_ip="DDR3/DDR4 SDRAM PHY IP Core"
           final_update_version="2024.1 (v1.2.0)">
        <Version value="1.0.2"/>
        <Version value="1.1.1"/>
    </EolIp>
</EolIps>
