summaryrefslogtreecommitdiffstats
path: root/meta-xilinx-core
diff options
context:
space:
mode:
authorSwagath Gadde <swagath.gadde@amd.com>2024-08-28 12:10:44 +0530
committerMark Hatle <mark.hatle@amd.com>2024-08-28 16:21:20 -0600
commit7c9bd892e9a4274b0c71d27686822af2afbb7021 (patch)
tree588489cfed6dc37e430372077c0e18f307a400d7 /meta-xilinx-core
parent7272ab82957080c11fed21e6315e844c74c17fcf (diff)
downloadmeta-xilinx-7c9bd892e9a4274b0c71d27686822af2afbb7021.tar.gz
lopper: update SRCREV for 2024.2
Change Log: petalinuxconfig_xlnx.py:pass memory_type value to device_type. lops: mb-riscv: Add generic cpus_* pattern to re-use riscv lop file for asu. openamp: xlnx: Validate reserved-mem regions. isospec: add permissive flag for non-SMID devices. lopper/log: move basicConfig to init(). lopper: assists: gen_domain_dts: Add Audio formatter DT yaml. lopper: assists: gen_domain_dts: Add SPDIF DT yaml. lopper: assists: gen_domain_dts: Add I2S sound card DT yaml. lopper: assists: gen_domain_dts: Add SDI Rx Subsystem DT yaml. lopper: assists: gen_domain_dts: Add SDI Tx Subsystem DT yaml. assists: gen_domain_dts: Add support for MB-V zephyr. Signed-off-by: Swagath Gadde <swagath.gadde@amd.com> Add fix for two typos in the openamp xlnx processing. Signed-off-by: Mark Hatle <mark.hatle@amd.com>
Diffstat (limited to 'meta-xilinx-core')
-rw-r--r--meta-xilinx-core/dynamic-layers/virtualization-layer/recipes-kernel/lopper/lopper/0001-openamp-xlnx-Fix-typo-in-comparison.patch38
-rw-r--r--meta-xilinx-core/dynamic-layers/virtualization-layer/recipes-kernel/lopper/lopper_git.bbappend6
2 files changed, 42 insertions, 2 deletions
diff --git a/meta-xilinx-core/dynamic-layers/virtualization-layer/recipes-kernel/lopper/lopper/0001-openamp-xlnx-Fix-typo-in-comparison.patch b/meta-xilinx-core/dynamic-layers/virtualization-layer/recipes-kernel/lopper/lopper/0001-openamp-xlnx-Fix-typo-in-comparison.patch
new file mode 100644
index 00000000..64dbc9ae
--- /dev/null
+++ b/meta-xilinx-core/dynamic-layers/virtualization-layer/recipes-kernel/lopper/lopper/0001-openamp-xlnx-Fix-typo-in-comparison.patch
@@ -0,0 +1,38 @@
1From 6d4d132ef591a08127895a5058d580f07124597b Mon Sep 17 00:00:00 2001
2From: Mark Hatle <mark.hatle@amd.com>
3Date: Wed, 28 Aug 2024 14:35:34 -0600
4Subject: [PATCH] openamp: xlnx: Fix typo in comparison
5
6Resolve issue reported as:
7 [ERROR]: could not load assist: .../usr/lib/python3.12/site-packages/lopper/assists/baremetal_bspconfig_xlnx.py: expected ':' (openamp_xlnx.py, line 200)
8 [ERROR]: could not load assist: .../usr/lib/python3.12/site-packages/lopper/assists/baremetal_bspconfig_xlnx.py: expected ':' (openamp_xlnx.py, line 1037)
9
10Signed-off-by: Mark Hatle <mark.hatle@amd.com>
11---
12 lopper/assists/openamp_xlnx.py | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15diff --git a/lopper/assists/openamp_xlnx.py b/lopper/assists/openamp_xlnx.py
16index 6fd77b0..5d62000 100644
17--- a/lopper/assists/openamp_xlnx.py
18+++ b/lopper/assists/openamp_xlnx.py
19@@ -197,7 +197,7 @@ def xlnx_rpmsg_construct_carveouts(tree, carveouts, rpmsg_carveouts, native, cha
20 new_node = LopperNode(-1, "/reserved-memory/"+carveout.name)
21 new_node + LopperProp(name="no-map")
22 new_node + LopperProp(name="reg", value=[0, start, 0, size])
23- if not reserved_mem_node_check(tree, new_node)
24+ if not reserved_mem_node_check(tree, new_node):
25 return False
26
27 if "vdev0buffer" in carveout.name:
28@@ -1034,7 +1034,7 @@ def xlnx_remoteproc_construct_carveouts(tree, carveouts, new_ddr_nodes, verbose
29 new_node + LopperProp(name="reg", value=[0, start, 0, size])
30 tree.add(new_node)
31
32- if not reserved_mem_node_check(tree, new_node)
33+ if not reserved_mem_node_check(tree, new_node):
34 return False
35
36 phandle_val = new_node.phandle_or_create()
37--
382.34.1
diff --git a/meta-xilinx-core/dynamic-layers/virtualization-layer/recipes-kernel/lopper/lopper_git.bbappend b/meta-xilinx-core/dynamic-layers/virtualization-layer/recipes-kernel/lopper/lopper_git.bbappend
index c6d50d12..1e2798d2 100644
--- a/meta-xilinx-core/dynamic-layers/virtualization-layer/recipes-kernel/lopper/lopper_git.bbappend
+++ b/meta-xilinx-core/dynamic-layers/virtualization-layer/recipes-kernel/lopper/lopper_git.bbappend
@@ -1,9 +1,11 @@
1SRC_URI = "git://github.com/devicetree-org/lopper.git;branch=master;protocol=https" 1SRC_URI = "git://github.com/devicetree-org/lopper.git;branch=master;protocol=https"
2SRCREV = "b6cd9f4b50769de9260760a5b40969de0f04ae49" 2SRCREV = "3c69852c71aba0bf5711b8463fb9ab38345faa42"
3 3
4FILESEXTRAPATHS:prepend := "${THISDIR}/lopper:" 4FILESEXTRAPATHS:prepend := "${THISDIR}/lopper:"
5 5
6BASEVERSION = "1.1.0" 6SRC_URI += "file://0001-openamp-xlnx-Fix-typo-in-comparison.patch"
7
8BASEVERSION = "1.2.0"
7 9
8RDEPENDS:${PN} += " \ 10RDEPENDS:${PN} += " \
9 python3-ruamel-yaml \ 11 python3-ruamel-yaml \