Lines Matching full:socs
54 socs = [(Soc(soc['name'],
57 for soc in s.get('socs', [])]
58 series.socs.extend(socs)
60 self._socs.extend(socs)
62 family.socs.extend(socs)
63 socs = [(Soc(soc['name'],
66 for soc in f.get('socs', [])]
67 self._socs.extend(socs)
72 socs = [(Soc(soc['name'],
75 for soc in s.get('socs', [])]
76 series.socs.extend(socs)
78 self._socs.extend(socs)
80 for soc in data.get('socs', []):
93 sys.exit(f'ERROR: Malformed "socs" section in SoC file: {soc_yaml}\n'
96 # Ensure that any runner configuration matches socs and cpuclusters declared in the same
116 '''Load SoCs from a soc.yml file.
122 sys.exit(f'ERROR: socs.yml file not found: {socs_file.as_posix()}', e)
128 '''Load socs from a string with YAML contents.
191 socs: List[Soc]
199 socs: List[Soc]
263 parser.add_argument("--socs", action='store_true', help='lookup all socs')
343 if any([args.socs, args.soc, args.soc_series, args.soc_family]):