diff options
author | Kunal Rane <kunal.rane@amd.com> | 2024-08-30 11:55:57 +0530 |
---|---|---|
committer | Mark Hatle <mark.hatle@amd.com> | 2024-09-04 09:32:26 -0500 |
commit | 393d9c00c826bfcdacf374782bba27e0e8e57764 (patch) | |
tree | a1611896cc6200c1eb524850c55869decec151fe | |
parent | c7074d682d8a1743062efd47037b4b59667a0b5f (diff) | |
download | meta-xilinx-393d9c00c826bfcdacf374782bba27e0e8e57764.tar.gz |
recipes-drivers: Support for multimedia recipes
Adding support for multimedia baremetal driver recipes to compile
fsbl-firmware.
Signed-off-by: Kunal Rane <kunal.rane@amd.com>
Signed-off-by: Mark Hatle <mark.hatle@amd.com>
54 files changed, 642 insertions, 9 deletions
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/audio-formatter_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/audio-formatter_2024.2.bb new file mode 100644 index 00000000..0ebdc46a --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/audio-formatter_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "audio-formatter" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone " | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/audio_formatter/src/" | ||
11 | ESW_COMPONENT_NAME = "libaudio_formatter.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/axipcie_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/axipcie_2024.2.bb new file mode 100644 index 00000000..a587d2ea --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/axipcie_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "axipcie" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone " | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/axipcie/src/" | ||
11 | ESW_COMPONENT_NAME = "libaxipcie.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/csi2tx_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/csi2tx_2024.2.bb new file mode 100644 index 00000000..638ff85d --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/csi2tx_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "csi2tx" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone " | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/csi2tx/src/" | ||
11 | ESW_COMPONENT_NAME = "libcsi2tx.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/csi2txss_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/csi2txss_2024.2.bb new file mode 100644 index 00000000..0c438681 --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/csi2txss_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "csi2txss" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone " | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/csi2txss/src/" | ||
11 | ESW_COMPONENT_NAME = "libcsi2txss.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/csi_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/csi_2024.2.bb new file mode 100644 index 00000000..6b1ccfb7 --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/csi_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "csi" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone " | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/csi/src/" | ||
11 | ESW_COMPONENT_NAME = "libcsi.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/dp12_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/dp12_2024.2.bb new file mode 100644 index 00000000..d3e102a1 --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/dp12_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "dp12" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone video-common" | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/dp12/src/" | ||
11 | ESW_COMPONENT_NAME = "libdp12.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/dp12rxss_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/dp12rxss_2024.2.bb new file mode 100644 index 00000000..dcd2c83c --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/dp12rxss_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "dp12rxss" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone video-common dp12 iic iicps hdcp1x" | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/dp12rxss/src/" | ||
11 | ESW_COMPONENT_NAME = "libdp12rxss.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/dp12txss_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/dp12txss_2024.2.bb new file mode 100644 index 00000000..fb06efac --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/dp12txss_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "dp12txss" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone dual-splitter vtc dp12 tmrctr" | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/dp12txss/src/" | ||
11 | ESW_COMPONENT_NAME = "libdp12txss.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/dp14_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/dp14_2024.2.bb index ab63d3a1..8b9e1ef7 100644 --- a/meta-xilinx-standalone-sdt/recipes-drivers/dp14_2024.2.bb +++ b/meta-xilinx-standalone-sdt/recipes-drivers/dp14_2024.2.bb | |||
@@ -5,7 +5,7 @@ REQUIRED_MACHINE_FEATURES = "dp14" | |||
5 | 5 | ||
6 | inherit esw python3native | 6 | inherit esw python3native |
7 | 7 | ||
8 | DEPENDS += "xilstandalone " | 8 | DEPENDS += "xilstandalone video-common" |
9 | 9 | ||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/dp14/src/" | 10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/dp14/src/" |
11 | ESW_COMPONENT_NAME = "libdp14.a" | 11 | ESW_COMPONENT_NAME = "libdp14.a" |
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/dp14rxss_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/dp14rxss_2024.2.bb index 4e98b2e4..b623d5df 100644 --- a/meta-xilinx-standalone-sdt/recipes-drivers/dp14rxss_2024.2.bb +++ b/meta-xilinx-standalone-sdt/recipes-drivers/dp14rxss_2024.2.bb | |||
@@ -5,7 +5,7 @@ REQUIRED_MACHINE_FEATURES = "dp14rxss" | |||
5 | 5 | ||
6 | inherit esw python3native | 6 | inherit esw python3native |
7 | 7 | ||
8 | DEPENDS += "xilstandalone " | 8 | DEPENDS += "xilstandalone video-common dp14 iic iicps hdcp1x hdcp22-rx-dp" |
9 | 9 | ||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/dp14rxss/src/" | 10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/dp14rxss/src/" |
11 | ESW_COMPONENT_NAME = "libdp14rxss.a" | 11 | ESW_COMPONENT_NAME = "libdp14rxss.a" |
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/dp14txss_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/dp14txss_2024.2.bb new file mode 100644 index 00000000..078d277f --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/dp14txss_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "dp14txss" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone dual-splitter vtc dp14 tmrctr hdcp1x hdcp22-tx-dp" | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/dp14txss/src/" | ||
11 | ESW_COMPONENT_NAME = "libdp14txss.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/dp21_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/dp21_2024.2.bb new file mode 100644 index 00000000..0398c202 --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/dp21_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "dp21" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone " | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/dp21/src/" | ||
11 | ESW_COMPONENT_NAME = "libdp21.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/dp21rxss_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/dp21rxss_2024.2.bb new file mode 100644 index 00000000..ec939378 --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/dp21rxss_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "dp21rxss" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone " | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/dp21rxss/src/" | ||
11 | ESW_COMPONENT_NAME = "libdp21rxss.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/dp21txss_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/dp21txss_2024.2.bb new file mode 100644 index 00000000..714fa146 --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/dp21txss_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "dp21txss" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone " | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/dp21txss/src/" | ||
11 | ESW_COMPONENT_NAME = "libdp21txss.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/dphy_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/dphy_2024.2.bb new file mode 100644 index 00000000..c0a32a38 --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/dphy_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "dphy" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone " | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/dphy/src/" | ||
11 | ESW_COMPONENT_NAME = "libdphy.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/dsi2rx_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/dsi2rx_2024.2.bb new file mode 100644 index 00000000..ffea6eb4 --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/dsi2rx_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "dsi2rx" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone " | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/dsi2rx/src/" | ||
11 | ESW_COMPONENT_NAME = "libdsi2rx.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/dsi_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/dsi_2024.2.bb new file mode 100644 index 00000000..ab2a81fa --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/dsi_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "dsi" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone video-common" | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/dsi/src/" | ||
11 | ESW_COMPONENT_NAME = "libdsi.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/dsirxss_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/dsirxss_2024.2.bb new file mode 100644 index 00000000..169037f3 --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/dsirxss_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "dsirxss" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone " | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/dsirxss/src/" | ||
11 | ESW_COMPONENT_NAME = "libdsirxss.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/dsitxss_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/dsitxss_2024.2.bb new file mode 100644 index 00000000..185d5b96 --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/dsitxss_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "dsitxss" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone dsi dphy" | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/dsitxss/src/" | ||
11 | ESW_COMPONENT_NAME = "libdsitxss.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/dual-splitter_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/dual-splitter_2024.2.bb new file mode 100644 index 00000000..45d546f7 --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/dual-splitter_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "dual-splitter" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone " | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/dual_splitter/src/" | ||
11 | ESW_COMPONENT_NAME = "libdual_splitter.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/hdcp1x_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/hdcp1x_2024.2.bb new file mode 100644 index 00000000..d3090048 --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/hdcp1x_2024.2.bb | |||
@@ -0,0 +1,21 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "hdcp1x" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone tmrctr" | ||
9 | |||
10 | DEPENDS += " ${@bb.utils.contains_any("MACHINE_FEATURES", "v-hdmirx1", "v-hdmirx1", "",d)}" | ||
11 | DEPENDS += " ${@bb.utils.contains_any("MACHINE_FEATURES", "v-hdmitx1", "v-hdmitx1", "",d)}" | ||
12 | DEPENDS += " ${@bb.utils.contains_any("MACHINE_FEATURES", "v-hdmirx", "v-hdmirx", "",d)}" | ||
13 | DEPENDS += " ${@bb.utils.contains_any("MACHINE_FEATURES", "v-hdmitx", "v-hdmitx", "",d)}" | ||
14 | DEPENDS += " ${@bb.utils.contains_any("MACHINE_FEATURES", "dp12", "dp12", "",d)}" | ||
15 | DEPENDS += " ${@bb.utils.contains_any("MACHINE_FEATURES", "dp14", "dp14", "",d)}" | ||
16 | |||
17 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/hdcp1x/src/" | ||
18 | ESW_COMPONENT_NAME = "libhdcp1x.a" | ||
19 | |||
20 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
21 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/hdcp22-cipher-dp_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/hdcp22-cipher-dp_2024.2.bb new file mode 100644 index 00000000..01ab14c9 --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/hdcp22-cipher-dp_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "hdcp22-cipher-dp" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone " | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/hdcp22_cipher_dp/src/" | ||
11 | ESW_COMPONENT_NAME = "libhdcp22_cipher_dp.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/hdcp22-cipher_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/hdcp22-cipher_2024.2.bb new file mode 100644 index 00000000..7899f880 --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/hdcp22-cipher_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "hdcp22-cipher" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone " | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/hdcp22_cipher/src/" | ||
11 | ESW_COMPONENT_NAME = "libhdcp22_cipher.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/hdcp22-common_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/hdcp22-common_2024.2.bb new file mode 100644 index 00000000..05bb66ef --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/hdcp22-common_2024.2.bb | |||
@@ -0,0 +1,12 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "hdcp22-common" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone " | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/hdcp22_common/src/" | ||
11 | ESW_COMPONENT_NAME = "libhdcp22_common.a" | ||
12 | |||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/hdcp22-mmult_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/hdcp22-mmult_2024.2.bb new file mode 100644 index 00000000..8dff5e6b --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/hdcp22-mmult_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "hdcp22-mmult" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone " | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/hdcp22_mmult/src/" | ||
11 | ESW_COMPONENT_NAME = "libhdcp22_mmult.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/hdcp22-rng_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/hdcp22-rng_2024.2.bb new file mode 100644 index 00000000..96bab361 --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/hdcp22-rng_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "hdcp22-rng" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone " | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/hdcp22_rng/src/" | ||
11 | ESW_COMPONENT_NAME = "libhdcp22_rng.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/hdcp22-rx-dp_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/hdcp22-rx-dp_2024.2.bb new file mode 100644 index 00000000..fba6bd9d --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/hdcp22-rx-dp_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "hdcp22-rx-dp" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone tmrctr hdcp22-common hdcp22-cipher-dp hdcp22-mmult hdcp22-rng" | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/hdcp22_rx_dp/src/" | ||
11 | ESW_COMPONENT_NAME = "libhdcp22_rx_dp.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/hdcp22-rx_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/hdcp22-rx_2024.2.bb new file mode 100644 index 00000000..67832580 --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/hdcp22-rx_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "hdcp22-rx" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone tmrctr hdcp22-common hdcp22-cipher hdcp22-mmult hdcp22-rng" | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/hdcp22_rx/src/" | ||
11 | ESW_COMPONENT_NAME = "libhdcp22_rx.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/hdcp22-tx-dp_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/hdcp22-tx-dp_2024.2.bb new file mode 100644 index 00000000..1054d500 --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/hdcp22-tx-dp_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "hdcp22-tx-dp" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone tmrctr hdcp22-common hdcp22-cipher-dp hdcp22-rng" | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/hdcp22_tx_dp/src/" | ||
11 | ESW_COMPONENT_NAME = "libhdcp22_tx_dp.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/hdcp22-tx_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/hdcp22-tx_2024.2.bb new file mode 100644 index 00000000..9a96606a --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/hdcp22-tx_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "hdcp22-tx" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone tmrctr hdcp22-common hdcp22-cipher hdcp22-rng" | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/hdcp22_tx/src/" | ||
11 | ESW_COMPONENT_NAME = "libhdcp22_tx.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/i3c_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/i3c_2024.2.bb new file mode 100644 index 00000000..e4185d58 --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/i3c_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "i3c" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone " | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/i3c/src/" | ||
11 | ESW_COMPONENT_NAME = "libi3c.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/mipi-rx-phy_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/mipi-rx-phy_2024.2.bb new file mode 100644 index 00000000..f3fe328e --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/mipi-rx-phy_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "mipi-rx-phy" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone " | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/mipi_rx_phy/src/" | ||
11 | ESW_COMPONENT_NAME = "libmipi_rx_phy.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/mipi-tx-phy_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/mipi-tx-phy_2024.2.bb new file mode 100644 index 00000000..c7ecb399 --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/mipi-tx-phy_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "mipi-tx-phy" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone " | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/mipi_tx_phy/src/" | ||
11 | ESW_COMPONENT_NAME = "libmipi_tx_phy.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/mipicsiss_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/mipicsiss_2024.2.bb new file mode 100644 index 00000000..42d07889 --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/mipicsiss_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "mipicsiss" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone csi iic dphy" | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/mipicsiss/src/" | ||
11 | ESW_COMPONENT_NAME = "libmipicsiss.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/sdi-common_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/sdi-common_2024.2.bb new file mode 100644 index 00000000..828a9ac9 --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/sdi-common_2024.2.bb | |||
@@ -0,0 +1,12 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "sdi-common" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone video-common" | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/sdi_common/src/" | ||
11 | ESW_COMPONENT_NAME = "libsdi_common.a" | ||
12 | |||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/sdiaud_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/sdiaud_2024.2.bb new file mode 100644 index 00000000..192a71d7 --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/sdiaud_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "sdiaud" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone " | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/sdiaud/src/" | ||
11 | ESW_COMPONENT_NAME = "libsdiaud.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/spdif_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/spdif_2024.2.bb new file mode 100644 index 00000000..34331128 --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/spdif_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "spdif" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone " | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/spdif/src/" | ||
11 | ESW_COMPONENT_NAME = "libspdif.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/ufspsxc_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/ufspsxc_2024.2.bb new file mode 100644 index 00000000..2c52f967 --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/ufspsxc_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "ufspsxc" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone " | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/ufspsxc/src/" | ||
11 | ESW_COMPONENT_NAME = "libufspsxc.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/v-axi4s-remap_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/v-axi4s-remap_2024.2.bb new file mode 100644 index 00000000..cd5fbccd --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/v-axi4s-remap_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "v-axi4s-remap" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone " | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/v_axi4s_remap/src/" | ||
11 | ESW_COMPONENT_NAME = "libv_axi4s_remap.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmi-common_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmi-common_2024.2.bb index 1e592d40..f6b191a7 100644 --- a/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmi-common_2024.2.bb +++ b/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmi-common_2024.2.bb | |||
@@ -5,7 +5,7 @@ REQUIRED_MACHINE_FEATURES = "v-hdmi-common" | |||
5 | 5 | ||
6 | inherit esw python3native | 6 | inherit esw python3native |
7 | 7 | ||
8 | DEPENDS += "xilstandalone " | 8 | DEPENDS += "xilstandalone video-common" |
9 | 9 | ||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/v_hdmi_common/src/" | 10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/v_hdmi_common/src/" |
11 | ESW_COMPONENT_NAME = "libv_hdmi_common.a" | 11 | ESW_COMPONENT_NAME = "libv_hdmi_common.a" |
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmiphy1_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmiphy1_2024.2.bb index d3d601cb..2b99a40a 100644 --- a/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmiphy1_2024.2.bb +++ b/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmiphy1_2024.2.bb | |||
@@ -5,7 +5,7 @@ REQUIRED_MACHINE_FEATURES = "v-hdmiphy1" | |||
5 | 5 | ||
6 | inherit esw python3native | 6 | inherit esw python3native |
7 | 7 | ||
8 | DEPENDS += "xilstandalone " | 8 | DEPENDS += "xilstandalone video-common" |
9 | 9 | ||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/v_hdmiphy1/src/" | 10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/v_hdmiphy1/src/" |
11 | ESW_COMPONENT_NAME = "libv_hdmiphy1.a" | 11 | ESW_COMPONENT_NAME = "libv_hdmiphy1.a" |
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmirx1_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmirx1_2024.2.bb index f2b576cd..4035ff1c 100644 --- a/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmirx1_2024.2.bb +++ b/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmirx1_2024.2.bb | |||
@@ -5,7 +5,7 @@ REQUIRED_MACHINE_FEATURES = "v-hdmirx1" | |||
5 | 5 | ||
6 | inherit esw python3native | 6 | inherit esw python3native |
7 | 7 | ||
8 | DEPENDS += "xilstandalone " | 8 | DEPENDS += "xilstandalone video-common v-hdmi-common" |
9 | 9 | ||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/v_hdmirx1/src/" | 10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/v_hdmirx1/src/" |
11 | ESW_COMPONENT_NAME = "libv_hdmirx1.a" | 11 | ESW_COMPONENT_NAME = "libv_hdmirx1.a" |
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmirx_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmirx_2024.2.bb new file mode 100644 index 00000000..c7d4d96b --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmirx_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "v-hdmirx" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone video-common v-hdmi-common" | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/v_hdmirx/src/" | ||
11 | ESW_COMPONENT_NAME = "libv_hdmirx.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmirxss1_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmirxss1_2024.2.bb index faf57614..ffc2c249 100644 --- a/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmirxss1_2024.2.bb +++ b/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmirxss1_2024.2.bb | |||
@@ -5,7 +5,7 @@ REQUIRED_MACHINE_FEATURES = "v-hdmirxss1" | |||
5 | 5 | ||
6 | inherit esw python3native | 6 | inherit esw python3native |
7 | 7 | ||
8 | DEPENDS += "xilstandalone " | 8 | DEPENDS += "xilstandalone v-hdmi-common v-hdmirx1 tmrctr hdcp1x hdcp22-rx" |
9 | 9 | ||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/v_hdmirxss1/src/" | 10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/v_hdmirxss1/src/" |
11 | ESW_COMPONENT_NAME = "libv_hdmirxss1.a" | 11 | ESW_COMPONENT_NAME = "libv_hdmirxss1.a" |
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmirxss_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmirxss_2024.2.bb new file mode 100644 index 00000000..df690421 --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmirxss_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "v-hdmirxss" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone v-hdmirx v-hdmi-common hdcp1x" | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/v_hdmirxss/src/" | ||
11 | ESW_COMPONENT_NAME = "libv_hdmirxss.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmitx1_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmitx1_2024.2.bb index 7070235e..c8e0e041 100644 --- a/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmitx1_2024.2.bb +++ b/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmitx1_2024.2.bb | |||
@@ -5,7 +5,7 @@ REQUIRED_MACHINE_FEATURES = "v-hdmitx1" | |||
5 | 5 | ||
6 | inherit esw python3native | 6 | inherit esw python3native |
7 | 7 | ||
8 | DEPENDS += "xilstandalone " | 8 | DEPENDS += "xilstandalone video-common v-hdmi-common" |
9 | 9 | ||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/v_hdmitx1/src/" | 10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/v_hdmitx1/src/" |
11 | ESW_COMPONENT_NAME = "libv_hdmitx1.a" | 11 | ESW_COMPONENT_NAME = "libv_hdmitx1.a" |
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmitx_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmitx_2024.2.bb new file mode 100644 index 00000000..d3de4af1 --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmitx_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "v-hdmitx" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone video-common v-hdmi-common" | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/v_hdmitx/src/" | ||
11 | ESW_COMPONENT_NAME = "libv_hdmitx.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmitxss1_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmitxss1_2024.2.bb index de4f4ad9..06a6c5a1 100644 --- a/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmitxss1_2024.2.bb +++ b/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmitxss1_2024.2.bb | |||
@@ -5,7 +5,7 @@ REQUIRED_MACHINE_FEATURES = "v-hdmitxss1" | |||
5 | 5 | ||
6 | inherit esw python3native | 6 | inherit esw python3native |
7 | 7 | ||
8 | DEPENDS += "xilstandalone " | 8 | DEPENDS += "xilstandalone v-hdmitx1 vtc tmrctr v-hdmi-common hdcp1x hdcp22-tx" |
9 | 9 | ||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/v_hdmitxss1/src/" | 10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/v_hdmitxss1/src/" |
11 | ESW_COMPONENT_NAME = "libv_hdmitxss1.a" | 11 | ESW_COMPONENT_NAME = "libv_hdmitxss1.a" |
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmitxss_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmitxss_2024.2.bb new file mode 100644 index 00000000..a7328b19 --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/v-hdmitxss_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "v-hdmitxss" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone v-hdmitx vtc v-hdmi-common hdcp1x" | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/v_hdmitxss/src/" | ||
11 | ESW_COMPONENT_NAME = "libv_hdmitxss.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/v-sdirx_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/v-sdirx_2024.2.bb new file mode 100644 index 00000000..39d54f2e --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/v-sdirx_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "v-sdirx" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone video-common sdi-common" | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/v_sdirx/src/" | ||
11 | ESW_COMPONENT_NAME = "libv_sdirx.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/v-sdirxss_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/v-sdirxss_2024.2.bb new file mode 100644 index 00000000..bba5be70 --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/v-sdirxss_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "v-sdirxss" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone v-sdirx" | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/v_sdirxss/src/" | ||
11 | ESW_COMPONENT_NAME = "libv_sdirxss.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/v-sditx_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/v-sditx_2024.2.bb new file mode 100644 index 00000000..4ee47426 --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/v-sditx_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "v-sditx" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone video-common sdi-common" | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/v_sditx/src/" | ||
11 | ESW_COMPONENT_NAME = "libv_sditx.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/v-sditxss_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/v-sditxss_2024.2.bb new file mode 100644 index 00000000..b3f7e2e9 --- /dev/null +++ b/meta-xilinx-standalone-sdt/recipes-drivers/v-sditxss_2024.2.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | inherit features_check | ||
3 | |||
4 | REQUIRED_MACHINE_FEATURES = "v-sditxss" | ||
5 | |||
6 | inherit esw python3native | ||
7 | |||
8 | DEPENDS += "xilstandalone v-sditx vtc" | ||
9 | |||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/v_sditxss/src/" | ||
11 | ESW_COMPONENT_NAME = "libv_sditxss.a" | ||
12 | |||
13 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
14 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||
diff --git a/meta-xilinx-standalone-sdt/recipes-drivers/vphy_2024.2.bb b/meta-xilinx-standalone-sdt/recipes-drivers/vphy_2024.2.bb index 1a06cf60..c24aaee3 100644 --- a/meta-xilinx-standalone-sdt/recipes-drivers/vphy_2024.2.bb +++ b/meta-xilinx-standalone-sdt/recipes-drivers/vphy_2024.2.bb | |||
@@ -5,7 +5,7 @@ REQUIRED_MACHINE_FEATURES = "vphy" | |||
5 | 5 | ||
6 | inherit esw python3native | 6 | inherit esw python3native |
7 | 7 | ||
8 | DEPENDS += "xilstandalone " | 8 | DEPENDS += "xilstandalone video-common" |
9 | 9 | ||
10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/vphy/src/" | 10 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/vphy/src/" |
11 | ESW_COMPONENT_NAME = "libvphy.a" | 11 | ESW_COMPONENT_NAME = "libvphy.a" |