From 55ca08d482e34af688c37c2d2e12c757d89bbe24 Mon Sep 17 00:00:00 2001 From: Hector Martin Date: Mon, 10 Apr 2023 19:55:28 +0900 Subject: [PATCH] m1n1.hv: t6020 support Signed-off-by: Hector Martin --- proxyclient/m1n1/hv/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxyclient/m1n1/hv/__init__.py b/proxyclient/m1n1/hv/__init__.py index ac061bcc..912beec7 100644 --- a/proxyclient/m1n1/hv/__init__.py +++ b/proxyclient/m1n1/hv/__init__.py @@ -1520,7 +1520,7 @@ class HV(Reloadable): cpu_start = 0x54000 + die * 0x20_0000_0000 elif chip_id in (0x8112,): cpu_start = 0x34000 + die * 0x20_0000_0000 - elif chip_id in (0x6021,): + elif chip_id in (0x6020, 0x6021): cpu_start = 0x28000 + die * 0x20_0000_0000 else: self.log("CPUSTART unknown for this SoC!")