mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-01-12 01:20:20 +00:00
This patch introduces udev rules to ensure consistent device naming for VPU decoders, encoders, and the JPEG encoder. These rules are essential for enabling hardware-accelerated video decoding in Chromium using the V4L2 Stateful decoder. The following udev rules are added: - Map vpu and vpu0 to /dev/video-dec0 and /dev/video-enc0. - Map vpu1 to /dev/video-dec1 and /dev/video-enc1. - Map the JPEG encoder to /dev/jpeg-enc0. These changes ensure proper operation of the VPU and JPEG encoder, especially when other video devices are connected, avoiding mismatches. Signed-off-by: Thorsten Lannynd <t-lannynd@ti.com> Reviewed-by: Andrew Davis <afd@ti.com> Signed-off-by: Ryan Eatmon <reatmon@ti.com>
32 lines
960 B
BlitzBasic
32 lines
960 B
BlitzBasic
SUMMARY = "Chips&Media codec firmware files"
|
|
|
|
require recipes-bsp/ti-linux-fw/ti-linux-fw.inc
|
|
|
|
inherit update-alternatives
|
|
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENCE.cnm;md5=df3992006621b797e36de43f36336e36"
|
|
|
|
PV = "${CNM_WAVE521_FW_VERSION}"
|
|
PR = "${INC_PR}.1"
|
|
|
|
COMPATIBLE_MACHINE = "j721s2|j784s4|j722s|j742s2|am62axx|am62pxx"
|
|
|
|
TARGET_WAVE521C = "wave521c_k3_codec_fw.bin"
|
|
|
|
SOURCE_WAVE521C = "wave521c_k3_codec_fw.bin"
|
|
|
|
ALTERNATIVE_LINK_NAME[wave521c_codec_fw.bin] = "${nonarch_base_libdir}/firmware/${TARGET_WAVE521C}"
|
|
ALTERNATIVE_TARGET[wave521c_codec_fw.bin] = "${nonarch_base_libdir}/firmware/cnm/${TARGET_WAVE521C}"
|
|
ALTERNATIVE_PRIORITY = "10"
|
|
|
|
# Set up names for the firmwares
|
|
ALTERNATIVE:${PN} = "wave521c_codec_fw.bin"
|
|
|
|
do_install() {
|
|
install -d ${D}${nonarch_base_libdir}/firmware/cnm
|
|
install -m 0644 ${S}/cnm/${SOURCE_WAVE521C} ${D}${nonarch_base_libdir}/firmware/cnm/${TARGET_WAVE521C}
|
|
}
|
|
|
|
RDEPENDS:${PN} += "ti-multimedia-udev"
|