Lines Matching refs:sec

11     for sec in cpt.sections():
12 re_xc_match = re.match('^.*?sys.*?\.cpu(\d+)*\.xc\.*', sec)
17 fpr = cpt.get(sec, 'floatRegs.i').split()
26 cpt.set(sec, 'floatRegs.i', ' '.join(str(x) for x in fpr))
28 ir = cpt.get(sec, 'intRegs').split()
34 cpt.set(sec, 'intRegs', ' '.join(str(x) for x in ir))
37 for sec in cpt.sections():
38 re_int_match = re.match("^.*?sys.*?\.cpu(\d+)*$", sec)
42 irqs = cpt.get(sec, "interrupts").split()
45 cpt.set(sec, "interrupts", ' '.join(str(x) for x in irqs))
48 for sec in cpt.sections():
49 re_int_match = re.match("^.*?sys.*?\.cpu(\d+)*\.interrupts$", sec)
53 irqs = cpt.get(sec, "interrupts").split()
56 cpt.set(sec, "interrupts", ' '.join(str(x) for x in irqs))
59 for sec in cpt.sections():
60 re_isa_match = re.match("^.*?sys.*?\.cpu(\d+)*\.isa$", sec)
64 cpt.set(sec, 'haveSecurity', 'false')
65 cpt.set(sec, 'haveLPAE', 'false')
66 cpt.set(sec, 'haveVirtualization', 'false')
67 cpt.set(sec, 'haveLargeAsid64', 'false')
68 cpt.set(sec, 'physAddrRange64', '40')
72 mr_old = cpt.get(sec, 'miscRegs').split()
249 cpt.set(sec, 'miscRegs', ' '.join(str(x) for x in mr_new))
253 for sec in cpt.sections():
254 re_tlb_match = re.match('(^.*?sys.*?\.cpu(\d+)*)\.(dtb|itb)$', sec)
260 attr = int(cpt.get(sec, '_attr'))
262 cpt.set(sec, '_attr', str(attr))
263 cpt.set(sec, 'haveLPAE', 'false')
264 cpt.set(sec, 'directToStage2', 'false')
265 cpt.set(sec, 'stage2Req', 'false')
266 cpt.set(sec, 'bootUncacheability', 'true')
269 for sec in cpt.sections():
270 re_tlbentry_match = re.match('(^.*?sys.*?\.cpu(\d+)*)\.(dtb|itb).TlbEntry\d+$', sec)
275 cpt.set(sec, 'longDescFormat', 'false')
276 cpt.set(sec, 'vmid', '0')
277 cpt.set(sec, 'isHyp', 'false')
278 valid = cpt.get(sec, 'valid')
280 cpt.set(sec, 'ns', 'true')
281 cpt.set(sec, 'nstid', 'true')
282 cpt.set(sec, 'pxn', 'true')
283 cpt.set(sec, 'hap', '3')
285 cpt.set(sec, 'lookupLevel', '2')
286 attr = int(cpt.get(sec, 'attributes'))
290 cpt.set(sec, 'attributes', str(attr))
292 cpt.set(sec, 'ns', 'false')
293 cpt.set(sec, 'nstid', 'false')
294 cpt.set(sec, 'pxn', 'false')
295 cpt.set(sec, 'hap', '0')
296 cpt.set(sec, 'lookupLevel', '0')
297 cpt.set(sec, 'outerShareable', 'false')