| Message ID | 20260115175532.3361474-1-reatmon@ti.com |
|---|---|
| State | New |
| Headers | show |
| Series | [meta-ti,master,v2] linux-ti-staging-6.18: Add config fragment for j721e | expand |
meta-ti / na / 20260115175532.3361474-1-reatmon PRC Results: PASS ========================================================= check-yocto-patches: PASS ========================================================= Patches ---------------------------------------- All patches passed ========================================================= apply-yocto-patch: PASS ========================================================= master ===================== Summary: - Patch Series: [meta-ti][master][PATCH v2] linux-ti-staging-6.18: Add config fragment for j721e - Submitter: From: Ryan Eatmon <reatmon@ti.com> - Date: Date: Thu, 15 Jan 2026 11:55:32 -0600 - Num Patches: 1 - Mailing List (public inbox) Commit SHA: c56aae7d1e9b869b0ca0f78759f3fb9428e96da7 Applied to: - Repository: lcpd-prc-meta-ti - Base Branch: master - Commit Author: LCPD Automation Script <lcpdbld@list.ti.com> - Commit Subject: CI/CD Auto-Merger: cicd.master.202601090100 - Commit SHA: 3b7aad2f154511d2472eb5b646d15eb0d50d56c6 Patches ---------------------------------------- All patches applied ========================================================= check-yocto-repo: PASS ========================================================= master ===================== PASS ========================================================= yocto-check-layers: PASS ========================================================= master - PASS ===================== All checks passed
diff --git a/meta-ti-bsp/recipes-kernel/linux/linux-ti-staging-6.18/j721e_vb2_dma_sg.cfg b/meta-ti-bsp/recipes-kernel/linux/linux-ti-staging-6.18/j721e_vb2_dma_sg.cfg new file mode 100644 index 00000000..d7249909 --- /dev/null +++ b/meta-ti-bsp/recipes-kernel/linux/linux-ti-staging-6.18/j721e_vb2_dma_sg.cfg @@ -0,0 +1,2 @@ +CONFIG_VIDEOBUF2_DMA_SG=m +CONFIG_ARCH_ROCKCHIP=y diff --git a/meta-ti-bsp/recipes-kernel/linux/linux-ti-staging_6.18.bb b/meta-ti-bsp/recipes-kernel/linux/linux-ti-staging_6.18.bb index c2e2a3b5..054c1e76 100644 --- a/meta-ti-bsp/recipes-kernel/linux/linux-ti-staging_6.18.bb +++ b/meta-ti-bsp/recipes-kernel/linux/linux-ti-staging_6.18.bb @@ -36,4 +36,7 @@ module_conf_ti_k3_r5_remoteproc = "softdep ti_k3_r5_remoteproc pre: virtio_rpmsg module_conf_ti_k3_dsp_remoteproc = "softdep ti_k3_dsp_remoteproc pre: virtio_rpmsg_bus" KERNEL_MODULE_PROBECONF += "rpmsg_client_sample ti_k3_r5_remoteproc ti_k3_dsp_remoteproc" +SRC_URI:append:j721e = " file://j721e_vb2_dma_sg.cfg" +KERNEL_CONFIG_FRAGMENTS:append:j721e = " ${UNPACKDIR}/j721e_vb2_dma_sg.cfg" + DEFAULT_PREFERENCE = "-1"
The ti-vxe-vxd-driver (out of tree module) requires the VIDEOBUF2_DMA_SG module to be built. But the in layer defconfig is pruning several options from the default defconfig that prevents us from easily turning it back on. This KERNEL_CONFIG_FRAGMENTS entry will turn on all of the needed options to re-enable the VIDEOBUF2_DMA_SG setting. This might be a temporary fix as there is effort to move the ti-vxe-vxd-driver back into the kernel tree which will clean up the Kconfig mess that requires this fragment. Signed-off-by: Ryan Eatmon <reatmon@ti.com> --- v2: Fix assignment operator for KERNEL_CONFIG_FRAGMENTS. .../linux/linux-ti-staging-6.18/j721e_vb2_dma_sg.cfg | 2 ++ meta-ti-bsp/recipes-kernel/linux/linux-ti-staging_6.18.bb | 3 +++ 2 files changed, 5 insertions(+) create mode 100644 meta-ti-bsp/recipes-kernel/linux/linux-ti-staging-6.18/j721e_vb2_dma_sg.cfg