mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-24 23:53:04 +00:00
add t6030 cpu_start_offset
This commit is contained in:
parent
fc5f8ab58c
commit
12caf220f1
2 changed files with 2 additions and 1 deletions
|
@ -1562,7 +1562,7 @@ class HV(Reloadable):
|
|||
chip_id = self.u.adt["/chosen"].chip_id
|
||||
if chip_id in (0x8103, 0x6000, 0x6001, 0x6002):
|
||||
cpu_start = 0x54000 + die * 0x20_0000_0000
|
||||
elif chip_id in (0x8112,):
|
||||
elif chip_id in (0x8112,0x6030):
|
||||
cpu_start = 0x34000 + die * 0x20_0000_0000
|
||||
elif chip_id in (0x6020, 0x6021, 0x6022):
|
||||
cpu_start = 0x28000 + die * 0x20_0000_0000
|
||||
|
|
|
@ -210,6 +210,7 @@ void smp_start_secondaries(void)
|
|||
break;
|
||||
case T8112:
|
||||
case T8122:
|
||||
case T6030:
|
||||
cpu_start_off = CPU_START_OFF_T8112;
|
||||
break;
|
||||
case T6020:
|
||||
|
|
Loading…
Reference in a new issue