diff --git a/proxyclient/m1n1/hv/__init__.py b/proxyclient/m1n1/hv/__init__.py index 936497af..47b14160 100644 --- a/proxyclient/m1n1/hv/__init__.py +++ b/proxyclient/m1n1/hv/__init__.py @@ -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 diff --git a/src/smp.c b/src/smp.c index d03566f6..d7080977 100644 --- a/src/smp.c +++ b/src/smp.c @@ -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: