aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAyan Kumar Halder2022-01-21 11:10:40 +0000
committerStefano Stabellini2022-01-21 12:57:01 -0800
commit1393caa374db807b7ece3fef18c00a4bffb5fa57 (patch)
tree88380239981921028e85e6682d743f01a4e444ea /scripts
parentf3c2be56f0cbdf220eca94d6ca58b94392768f37 (diff)
Added the lopper dts file to generate imagebuilder config from system-device-tree
Lopper parses the device tree for a "xen" label. It parses the sub nodes to determine the DOM0_VCPUS, DOM0_MEM, NUM_DOMUS, DOMU_VCPUS[], DOMU_MEM[] and DOMU_PASSTHROUGH_PATHS[] As an example, consider the following snippet of system-device-tree xen: domain@2 { compatible = "openamp,domain-v1","openamp,hypervisor-v1"; cpus = <&cpus_a72 0x3 0x00000002>; memory = <0x0 0x500000 0x0 0x7fb00000>; dom0: domain@3 { compatible = "openamp,domain-v1","xen,domain-v2"; cpus = <&cpus_a72 0x3 0x00000001>; memory = <0x0 0x501000 0x0 0x3faff000>; }; linux1: domain@4 { compatible = "openamp,domain-v1","xen,domain-v2"; cpus = <&cpus_a72 0x3 0x00000001>; memory = <0x0 0x501000 0x0 0x3faff000>; access = <&mmc0 0x0>; }; linux2: domain@5 { compatible = "openamp,domain-v1","xen,domain-v2"; cpus = <&cpus_a72 0x3 0x00000001>; memory = <0x0 0x40000000 0x0 0x40000000>; firewallconfig = <&linux1 1 0>; }; }; python3 _path_to_/lopper.py -f --enhanced -i path_to_/lop-xen.dts device-trees/system-device-tree-xen.dts > config The contents of the 'config' will be as follows :- NUM_DOMUS=2 DOM0_VCPUS = 2 DOM0_MEM = 1018 DOMU_VCPUS[0] = 2 DOMU_MEM[0] = 1018 DOMU_PASSTHROUGH_PATHS[0] = "/bus@f1000000/sdhci@f1050000" DOMU_VCPUS[1] = 2 DOMU_MEM[1] = 1024 This is provided as the input configuration file for the imagebuilder. Signed-off-by: Bruce Ashfield <bruce.ashfield@xilinx.com> Signed-off-by: Ayan Kumar Halder <ayankuma@xilinx.com> Reviewed-by: Stefano Stabellini <sstabellini@kernel.org> [stefano: minor style and grammar fixes] Signed-off-by: Stefano Stabellini <stefano.stabellini@xilinx.com>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/lop-xen.dts98
1 files changed, 98 insertions, 0 deletions
diff --git a/scripts/lop-xen.dts b/scripts/lop-xen.dts
new file mode 100644
index 0000000..6bf40eb
--- /dev/null
+++ b/scripts/lop-xen.dts
@@ -0,0 +1,98 @@
+/*
+ * Copyright (c) 2019,2020 Xilinx Inc. All rights reserved.
+ *
+ * Author:
+ * Bruce Ashfield <bruce.ashfield@xilinx.com>
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+
+/dts-v1/;
+
+/ {
+ compatible = "system-device-tree-v1,lop";
+ lops {
+ compatible = "system-device-tree-v1,lop";
+ lop_0_1 {
+ compatible = "system-device-tree-v1,lop,select-v1";
+ select_1;
+ select_2 = "xen::";
+ lop_0_2 {
+ compatible = "system-device-tree-v1,lop,code-v1";
+ inherit = "lopper_lib";
+ code = "
+ s = __selected__[0]
+
+ ## Look for dom0 label to identify dom0, if no label
+ ## assume it is a domu
+ sn = s.subnodes( children_only = True )
+
+ domu_count = 0
+ for n in sn:
+ if n.label != 'dom0':
+ domu_count += 1
+
+ print( 'NUM_DOMUS=%s' % domu_count )
+
+ domu_index = -1
+ for node_count, domu_node in enumerate(sn):
+ dom0_flag = False
+
+ if domu_node.label == 'dom0':
+ dom0_flag = True
+ else:
+ domu_index += 1
+
+ # cpus
+ try:
+ # note: this doesn't check the cpu mask, but probably should
+ cpus = domu_node['cpus']
+ refd_cpus, unrefd_cpus = lopper_lib.cpu_refs( tree, cpus )
+ cpu_count = len(refd_cpus)
+
+ if dom0_flag:
+ print( 'DOM0_VCPUS = %s' % cpu_count )
+ else:
+ print( 'DOMU_VCPUS[%s] = %s' % (domu_index,cpu_count) )
+ except:
+ pass
+
+ # memory
+ try:
+ ## memory is <size size range range> to allow
+ ## 64 bit memory, so we just want the 3rd and 4th
+ ## converted from bytes to MB in the output.
+ mem = domu_node['memory']
+ mem_high = mem[2]
+ mem_low = mem[3]
+
+ mem_low_mb = int(mem_low / (1024 * 1024))
+
+ if dom0_flag:
+ print( 'DOM0_MEM = %s' % mem_low_mb )
+ else:
+ print( 'DOMU_MEM[%s] = %s' % (domu_index,mem_low_mb) )
+ except Exception as e:
+ print( '[ERROR]: %s' % e )
+
+ # devices
+ try:
+ accessed_nodes = lopper_lib.node_accesses( tree, domu_node )
+ access_paths = ''
+ if accessed_nodes:
+ # print( 'accesses! %s' % accessed_nodes )
+ for a in accessed_nodes:
+ access_paths += '\"' + a.abs_path + '\"' + ','
+
+ # remove any possible trailing commas
+ access_paths = access_paths.rstrip(',')
+ print( 'DOMU_PASSTHROUGH_PATHS[%s] = %s' % (domu_index,access_paths ))
+
+ except Exception as e:
+ print( '[ERROR]: %s' % e )
+
+ ";
+ };
+ };
+ };
+};