DFT mode下hard phy STA Nopath

打印 上一主题 下一主题

主题 978|帖子 978|积分 2934

hard Phy boundary No Path

1. shift mode;

shift cornor出现No Path的;
PHY SI SO在shift mode必须有timing的path; 展示为No constrained path;
check step:

report_timing -though
NO constrained path
set timing_report_unconstrained true
report again

you will get a potential path;
get the clock of startpiont

now the no path reason would be two case:

  • start point & end point is in two difference clock group;
  • Lib is no include the timing arc of this pin;
check the lib:

发现在shift mode吧 bypass func的lib也读入了; 通过remove lib 确认最终读如的lib:

重新读入lib, shift path 出现;
2.dc capture mode

同样发现 hard phy SI SO的出现 no path;

  • 在DC capture mode 本身是不会颠末SI D path; 所以SI Q path不存在本身也是合理的;(结论是否正确)
  • 存在的Path 为bypass 的pass ,是由于同属一个clock group ,DFT未插lock up latch导致; Path 为 true path, 须要后端修;

其他非SI SO pin的no path;
优先查看Lib中在此mode是否存在 timing arc;
附加处理lib的脚本;

  1. import re
  2. def read_pinlist(pinlist_file):
  3.     """
  4.     Read pinlist from a text file, where each line contains one pin_name.
  5.     Parameters:
  6.         pinlist_file (str): Path to the pinlist file.
  7.     Returns:
  8.         list: A list of pin_names.
  9.     """
  10.     try:
  11.         with open(pinlist_file, 'r') as f:
  12.             # Read lines, strip whitespace, and skip empty lines
  13.             pinlist = [line.strip() for line in f.readlines() if line.strip()]
  14.         return pinlist
  15.     except FileNotFoundError:
  16.         print(f"Error: File {pinlist_file} not found")
  17.         return []
  18. def parse_lib(lib_content):
  19.     """
  20.     Parse the lib file content and return a dictionary with pin_name as keys and their corresponding timing block modes as values.
  21.     Parameters:
  22.         lib_content (str): The text content of the lib file.
  23.     Returns:
  24.         dict: A dictionary containing pin_name and its timing block modes.
  25.     """
  26.     pin_dict = {}
  27.     # Regular expression to match pin blocks
  28.     pin_pattern = r'pin\((.*?)\)\s*{([^{}]*)}'
  29.     pin_matches = re.findall(pin_pattern, lib_content, re.DOTALL)
  30.    
  31.     for pin_match in pin_matches:
  32.         # Extract pin_name and remove leading/trailing spaces and quotes
  33.         pin_name = pin_match[0].strip().strip('"')
  34.         pin_content = pin_match[1]
  35.         
  36.         # Match timing blocks
  37.         timing_pattern = r'timing\(\)\s*{([^{}]*)}'
  38.         timing_matches = re.findall(timing_pattern, pin_content, re.DOTALL)
  39.         
  40.         modes = []
  41.         for timing_match in timing_matches:
  42.             timing_content = timing_match
  43.             # Match mode field
  44.             mode_pattern = r'mode\(etm_mode\s*,\s*"([^"]*)"\s*\);'
  45.             mode_match = re.search(mode_pattern, timing_content)
  46.             if mode_match:
  47.                 mode_name = mode_match.group(1).strip()  # Remove leading/trailing spaces from mode_name
  48.                 modes.append(mode_name)
  49.         
  50.         pin_dict[pin_name] = modes
  51.    
  52.     return pin_dict
  53. def check_pins(pinlist, pin_dict):
  54.     """
  55.     Check the status of each pin_name in pinlist based on the lib file and print the results.
  56.     Parameters:
  57.         pinlist (list): A list of pin_names to check.
  58.         pin_dict (dict): A dictionary parsed from the lib file containing pin information.
  59.     """
  60.     for pin_name in pinlist:
  61.         if pin_name not in pin_dict:
  62.             print(f"{pin_name}: NO pin_name")
  63.         else:
  64.             modes = pin_dict[pin_name]
  65.             if not modes:
  66.                 print(f"{pin_name}: NO timing arc")
  67.             elif "stuckat_cap" not in modes:
  68.                 print(f"{pin_name}: NO stuckat_cap mode")
  69.             else:
  70.                 print(f"{pin_name}: Exist stuckat_cap mode")
  71. def main():
  72.     # Example lib file path (modify according to actual path)
  73.     lib_file_path = "lib.txt"
  74.     try:
  75.         with open(lib_file_path, "r") as f:
  76.             lib_content = f.read()
  77.     except FileNotFoundError:
  78.         print(f"Error: File {lib_file_path} not found")
  79.         return
  80.    
  81.     # Parse the lib file
  82.     pin_dict = parse_lib(lib_content)
  83.    
  84.     # Example pinlist (modify according to actual needs)
  85.     pinlist = ["pin1", "pin2", "pin3", "pin4"]
  86.    
  87.     # Check and print results
  88.     check_pins(pinlist, pin_dict)
  89. if __name__ == "__main__":
  90.     main()
  91. import re
  92. def parse_lib(lib_content):
  93.     """Parse the lib file content and return a dictionary with pin_name as keys and their corresponding pin content as values."""
  94.     pins = {}
  95.     lines = lib_content.split('\n')
  96.     current_pin = None
  97.     pin_content = []
  98.     brace_level = 0
  99.     collecting = False
  100.     for line in lines:
  101.         stripped = line.strip()
  102.         if not collecting and stripped.startswith('pin('):
  103.             # Extract pin name
  104.             pin_start = stripped.find('(') + 1
  105.             pin_end = stripped.find(')')
  106.             if pin_end == -1:
  107.                 continue  # Skip if format is incorrect
  108.             current_pin = stripped[pin_start:pin_end].strip()
  109.             brace_start = stripped.find('{', pin_end)
  110.             if brace_start != -1:
  111.                 brace_level = 1
  112.                 collecting = True
  113.                 # Add the first line content (if any)
  114.                 rest = stripped[brace_start+1:].strip()
  115.                 if rest:
  116.                     pin_content.append(rest)
  117.         elif collecting:
  118.             # Calculate brace level
  119.             brace_level += line.count('{')
  120.             brace_level -= line.count('}')
  121.             
  122.             if brace_level > 0:
  123.                 pin_content.append(line)
  124.             else:
  125.                 collecting = False
  126.                 pins[current_pin] = '\n'.join(pin_content)
  127.                 current_pin = None
  128.                 pin_content = []
  129.     return pins
  130. def analyze_pin(pin_content):
  131.     """Analyze the content of a single pin and return its status."""
  132.     # Check if there are timing blocks
  133.     timing_blocks = []
  134.     in_timing = False
  135.     current_block = []
  136.     brace_level = 0
  137.    
  138.     for line in pin_content.split('\n'):
  139.         stripped = line.strip()
  140.         if not in_timing and stripped.startswith('timing('):
  141.             in_timing = True
  142.             brace_level = 0
  143.             current_block = []
  144.         
  145.         if in_timing:
  146.             current_block.append(line)
  147.             brace_level += line.count('{')
  148.             brace_level -= line.count('}')
  149.             
  150.             if brace_level <= 0:
  151.                 in_timing = False
  152.                 timing_blocks.append('\n'.join(current_block))
  153.    
  154.     if not timing_blocks:
  155.         return "NO timing arc"
  156.    
  157.     # Check if any timing block contains stuckat_cap mode
  158.     pattern = re.compile(r'mode\s*\(\s*etm_mode\s*,\s*"\s*stuckat_cap\s*"\s*\)')
  159.     for block in timing_blocks:
  160.         if pattern.search(block):
  161.             return "OK"
  162.    
  163.     return "NO stuckat_cp mode"
  164. def main(pinlist_file, lib_file):
  165.     with open(lib_file, 'r') as f:
  166.         content = f.read()
  167.    
  168.     pins = parse_lib(content)
  169.     pinlist= read_pinlist(pinlist_file);
  170.     if not pinlist:
  171.         print("Pinlist is empty or file not exist");
  172.         return
  173.         
  174.     for pin_name in pinlist:
  175.         if pin_name not in pins:
  176.             print(f"{pin_name}: Not found")
  177.             continue
  178.         
  179.         status = analyze_pin(pins[pin_name])
  180.         print(f"{pin_name}: {status}")
  181. # Example usage
  182. if __name__ == "__main__":
  183.     pinlist_file = "./file_name"# Replace with actual pin list
  184.     lib_file = "your_lib.lib"           # Replace with actual lib file path
  185.     main(pinlist, lib_file)
复制代码
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

石小疯

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表