x86: Move APIC clock divider to Python
This patch moves the 16x APIC clock divider to the Python code to avoid the post-instantiation modifications to the clock. The x86 APIC was the only object setting the clock after creation time and this required some custom functionality and configuration. With this patch, the clock multiplier is moved to the Python code and the objects are instantiated with the appropriate clock.
This commit is contained in:
@@ -221,8 +221,9 @@ class BaseCPU(MemObject):
|
||||
elif buildEnv['TARGET_ISA'] == 'alpha':
|
||||
self.interrupts = AlphaInterrupts()
|
||||
elif buildEnv['TARGET_ISA'] == 'x86':
|
||||
_localApic = X86LocalApic(pio_addr=0x2000000000000000)
|
||||
self.interrupts = _localApic
|
||||
self.interrupts = X86LocalApic(clock = Parent.clock * 16,
|
||||
pio_addr=0x2000000000000000)
|
||||
_localApic = self.interrupts
|
||||
elif buildEnv['TARGET_ISA'] == 'mips':
|
||||
self.interrupts = MipsInterrupts()
|
||||
elif buildEnv['TARGET_ISA'] == 'arm':
|
||||
|
||||
Reference in New Issue
Block a user