BaseKvmCPU.py (10905:a6ca6831e775) | BaseKvmCPU.py (11399:3f805b5c48ae) |
---|---|
1# Copyright (c) 2012 ARM Limited 2# All rights reserved. 3# 4# The license below extends only to copyright in the software and shall 5# not be construed as granting a license to any other intellectual 6# property including but not limited to intellectual property relating 7# to a hardware implementation of the functionality of the software 8# licensed hereunder. You may use the software subject to the license --- 57 unchanged lines hidden (view full) --- 66 67 @classmethod 68 def support_take_over(cls): 69 return True 70 71 kvmVM = Param.KvmVM(Parent.any, 'KVM VM (i.e., shared memory domain)') 72 useCoalescedMMIO = Param.Bool(False, "Use coalesced MMIO (EXPERIMENTAL)") 73 usePerfOverflow = Param.Bool(False, "Use perf event overflow counters (EXPERIMENTAL)") | 1# Copyright (c) 2012 ARM Limited 2# All rights reserved. 3# 4# The license below extends only to copyright in the software and shall 5# not be construed as granting a license to any other intellectual 6# property including but not limited to intellectual property relating 7# to a hardware implementation of the functionality of the software 8# licensed hereunder. You may use the software subject to the license --- 57 unchanged lines hidden (view full) --- 66 67 @classmethod 68 def support_take_over(cls): 69 return True 70 71 kvmVM = Param.KvmVM(Parent.any, 'KVM VM (i.e., shared memory domain)') 72 useCoalescedMMIO = Param.Bool(False, "Use coalesced MMIO (EXPERIMENTAL)") 73 usePerfOverflow = Param.Bool(False, "Use perf event overflow counters (EXPERIMENTAL)") |
74 alwaysSyncTC = Param.Bool(False, 75 "Always sync thread contexts on entry/exit") |
|
74 75 hostFreq = Param.Clock("2GHz", "Host clock frequency") 76 hostFactor = Param.Float(1.0, "Cycle scale factor") | 76 77 hostFreq = Param.Clock("2GHz", "Host clock frequency") 78 hostFactor = Param.Float(1.0, "Cycle scale factor") |