| Message ID | 20251104091846.1599044-1-p-bhagat@ti.com |
|---|---|
| State | Superseded |
| Delegated to: | Ryan Eatmon |
| Headers | show |
| Series | [master/scarthgap] recipes-bsp: Add TI PCM6240 ADC firmware recipe | expand |
meta-ti / na / 20251104091846.1599044-1-p-bhagat
PRC Results: PASS
=========================================================
check-yocto-patches: PASS
=========================================================
Patches
----------------------------------------
WARN - [master/scarthgap][PATCH] recipes-bsp: Add TI PCM6240 ADC firmware recipe
WARN: Commit message does not include file/recipe name: recipes-bsp: Add TI PCM6240 ADC firmware recipe. (COMMIT-MESSAGE-2)
patch
WARN: Commit message should not include directory path to recipe: recipes-bsp: Add TI PCM6240 ADC firmware recipe.
recipes-bsp: (COMMIT-MESSAGE-3)
patch
=========================================================
apply-yocto-patch: PASS
=========================================================
master
=====================
Summary:
- Patch Series: [master/scarthgap][PATCH] recipes-bsp: Add TI PCM6240 ADC firmware recipe
- Submitter: From: Paresh Bhagat <p-bhagat@ti.com>
From: Vishnu Singh <v-singh1@ti.com>
- Date: Date: Tue, 4 Nov 2025 14:48:46 +0530
- Num Patches: 1
- Mailing List (public inbox) Commit SHA: 7f2bd9da684f733fe10ceadddcb8021909741371
Applied to:
- Repository: lcpd-prc-meta-ti
- Base Branch: master-wip
- Commit Author: Ryan Eatmon <reatmon@ti.com>
- Commit Subject: ti-core-initramfs: Set IMAGE_OVERHEAD_FACTOR
- Commit SHA: dec3f236ac32ab2ea80e6d0640fc38ad26dbe5da
Patches
----------------------------------------
All patches applied
scarthgap
=====================
Summary:
- Patch Series: [master/scarthgap][PATCH] recipes-bsp: Add TI PCM6240 ADC firmware recipe
- Submitter: From: Paresh Bhagat <p-bhagat@ti.com>
From: Vishnu Singh <v-singh1@ti.com>
- Date: Date: Tue, 4 Nov 2025 14:48:46 +0530
- Num Patches: 1
- Mailing List (public inbox) Commit SHA: 7f2bd9da684f733fe10ceadddcb8021909741371
Applied to:
- Repository: lcpd-prc-meta-ti
- Base Branch: scarthgap-wip
- Commit Author: Vishnu Singh <v-singh1@ti.com>
- Commit Subject: ti-librpmsg-dma: update ti-librpmsg-dma SRCREV & LICENSE
- Commit SHA: 879abf6914437e3a4da45fd515f33ac583bbddc5
Patches
----------------------------------------
All patches applied
=========================================================
check-yocto-repo: PASS
=========================================================
master
=====================
PASS
scarthgap
=====================
PASS
diff --git a/meta-ti-bsp/conf/machine/am62dxx-evm.conf b/meta-ti-bsp/conf/machine/am62dxx-evm.conf index 663f8ceb..e10bbc62 100644 --- a/meta-ti-bsp/conf/machine/am62dxx-evm.conf +++ b/meta-ti-bsp/conf/machine/am62dxx-evm.conf @@ -16,4 +16,4 @@ FIT_CONF_DEFAULT_DTB = "k3-am62d2-evm.dtb" UBOOT_MACHINE = "am62dx_evm_a53_defconfig" -MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS += "ti-dac-fw" +MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS += "ti-dac-fw ti-adc-fw" diff --git a/meta-ti-bsp/recipes-bsp/ti-adc-fw/ti-adc-fw.bb b/meta-ti-bsp/recipes-bsp/ti-adc-fw/ti-adc-fw.bb new file mode 100644 index 00000000..038a54d5 --- /dev/null +++ b/meta-ti-bsp/recipes-bsp/ti-adc-fw/ti-adc-fw.bb @@ -0,0 +1,15 @@ +DESCRIPTION = "TI ADC PCM6240 config prebuild binary firmware" + +require recipes-bsp/ti-linux-fw/ti-linux-fw.inc + +PV = "${PCM6240_FW_VERSION}" +PR = "${INC_PR}.0" + +COMPATIBLE_MACHINE = "am62dxx" + +PCM6240_2DEV = "pcm6240-i2c-0-2dev.bin" + +do_install() { + install -d ${D}${nonarch_base_libdir}/firmware + install -m 0644 ${S}/ti/pcm6240/${PCM6240_2DEV} ${D}${nonarch_base_libdir}/firmware/ +} diff --git a/meta-ti-bsp/recipes-bsp/ti-linux-fw/ti-linux-fw.inc b/meta-ti-bsp/recipes-bsp/ti-linux-fw/ti-linux-fw.inc index 3e8f0f10..e17f53e4 100644 --- a/meta-ti-bsp/recipes-bsp/ti-linux-fw/ti-linux-fw.inc +++ b/meta-ti-bsp/recipes-bsp/ti-linux-fw/ti-linux-fw.inc @@ -20,6 +20,7 @@ TI_HSM_DEMO_FW_VERSION = "11.00.09" TAD5212_FW_VERSION = "1.0.0.0" TI_PKA_FW_VERSION = "2.1.0" TI_IPC_EXAMPLES_FW_VERSION = "3.52.00.01" +PCM6240_FW_VERSION = "1.0.0.0" TI_LINUX_FW_SRCREV ?= "3c8ad7386e818cb42cce6ed4ce2aa1e76d7c688f" SRCREV = "${TI_LINUX_FW_SRCREV}"