cpu: Add CPU metadata om the Python classes
The configuration scripts currently hard-code the requirements of each
CPU. This is clearly not optimal as it makes writing new configuration
scripts painful and adding new CPU models requires existing scripts to
be updated. This patch adds the following class methods to the base
CPU and all relevant CPUs:
* memory_mode -- Return a string describing the current memory mode
(invalid/atomic/timing).
* require_caches -- Does the CPU model require caches?
* support_take_over -- Does the CPU support CPU handover?
This commit is contained in:
@@ -42,8 +42,21 @@ from m5.params import *
|
||||
from BaseSimpleCPU import BaseSimpleCPU
|
||||
|
||||
class AtomicSimpleCPU(BaseSimpleCPU):
|
||||
"""Simple CPU model executing a configurable number of
|
||||
instructions per cycle. This model uses the simplified 'atomic'
|
||||
memory mode."""
|
||||
|
||||
type = 'AtomicSimpleCPU'
|
||||
cxx_header = "cpu/simple/atomic.hh"
|
||||
|
||||
@classmethod
|
||||
def memory_mode(cls):
|
||||
return 'atomic'
|
||||
|
||||
@classmethod
|
||||
def support_take_over(cls):
|
||||
return True
|
||||
|
||||
width = Param.Int(1, "CPU width")
|
||||
simulate_data_stalls = Param.Bool(False, "Simulate dcache stall cycles")
|
||||
simulate_inst_stalls = Param.Bool(False, "Simulate icache stall cycles")
|
||||
|
||||
Reference in New Issue
Block a user