mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-10 09:44:13 +00:00
m1n1.hv: Fix cpustart for >2 clusters
Signed-off-by: Hector Martin <marcan@marcan.st>
This commit is contained in:
parent
0005b6533b
commit
49858b6d2c
1 changed files with 2 additions and 2 deletions
|
@ -1117,8 +1117,8 @@ class HV(Reloadable):
|
|||
self.start_secondary(cluster, i)
|
||||
|
||||
PMGR_CPU_START = 0x54000
|
||||
zone = irange(pmgr0_start + PMGR_CPU_START, 0x10)
|
||||
self.map_hook(pmgr0_start + PMGR_CPU_START, 0x10, write=cpustart_wh)
|
||||
zone = irange(pmgr0_start + PMGR_CPU_START, 0x20)
|
||||
self.map_hook(pmgr0_start + PMGR_CPU_START, 0x20, write=cpustart_wh)
|
||||
self.add_tracer(zone, "CPU_START", TraceMode.RESERVED)
|
||||
|
||||
def start_secondary(self, cluster, cpu):
|
||||
|
|
Loading…
Reference in a new issue