BaseKvmCPU.py (11787:af41594e9b3c) BaseKvmCPU.py (11839:dd6df2e47c14)
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

--- 50 unchanged lines hidden (view full) ---

59 @classmethod
60 def require_caches(cls):
61 return False
62
63 @classmethod
64 def support_take_over(cls):
65 return True
66
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

--- 50 unchanged lines hidden (view full) ---

59 @classmethod
60 def require_caches(cls):
61 return False
62
63 @classmethod
64 def support_take_over(cls):
65 return True
66
67 kvmVM = Param.KvmVM(Parent.any, 'KVM VM (i.e., shared memory domain)')
68 useCoalescedMMIO = Param.Bool(False, "Use coalesced MMIO (EXPERIMENTAL)")
69 usePerfOverflow = Param.Bool(False, "Use perf event overflow counters (EXPERIMENTAL)")
70 alwaysSyncTC = Param.Bool(False,
71 "Always sync thread contexts on entry/exit")
72
73 hostFreq = Param.Clock("2GHz", "Host clock frequency")
74 hostFactor = Param.Float(1.0, "Cycle scale factor")
67 useCoalescedMMIO = Param.Bool(False, "Use coalesced MMIO (EXPERIMENTAL)")
68 usePerfOverflow = Param.Bool(False, "Use perf event overflow counters (EXPERIMENTAL)")
69 alwaysSyncTC = Param.Bool(False,
70 "Always sync thread contexts on entry/exit")
71
72 hostFreq = Param.Clock("2GHz", "Host clock frequency")
73 hostFactor = Param.Float(1.0, "Cycle scale factor")