pvmfw: Expand number of cpus allowed per cluster

Some devices uses a flattened cpu-map to describe
their topology, expand the max number of CPUs per
clusters to 10.

Bug: 335130218
Test: Boot protected microdroid
Change-Id: I922acd358b23abe3ddfafc488319a379f34b8c41
Signed-off-by: David Dai <davidai@google.com>
diff --git a/pvmfw/src/fdt.rs b/pvmfw/src/fdt.rs
index 7e7d641..6038f12 100644
--- a/pvmfw/src/fdt.rs
+++ b/pvmfw/src/fdt.rs
@@ -219,7 +219,7 @@
 }
 
 impl ClusterTopology {
-    const MAX_CORES_PER_CLUSTER: usize = 6;
+    const MAX_CORES_PER_CLUSTER: usize = 10;
 }
 
 #[derive(Debug, Default)]