BaseKvmCPU.py (9655:78c9adc85718) BaseKvmCPU.py (9690:8055cd04be78)
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

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

64 def require_caches(cls):
65 return False
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)')
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

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

64 def require_caches(cls):
65 return False
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)")
72 usePerfOverflow = Param.Bool(False, "Use perf event overflow counters (EXPERIMENTAL)")
73 hostFactor = Param.Float(1.0, "Cycle scale factor")
73 usePerfOverflow = Param.Bool(False, "Use perf event overflow counters (EXPERIMENTAL)")
74 hostFactor = Param.Float(1.0, "Cycle scale factor")