[linux-yocto] [kernel-cache][master][yocto-6.6][PATCH] bsp/intel-corei7-64: enable Intel IOMMU support

2024-05-08 Thread Naveen Saini
Enable Intel IOMMU driver for intel-corei7-64 machine. Signed-off-by: Naveen Saini --- bsp/intel-common/intel-corei7-64.scc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bsp/intel-common/intel-corei7-64.scc b/bsp/intel-common/intel-corei7-64.scc index ad9122c1..840c739f 100644 ---

[linux-yocto] [kernel-cache][master][yocto-6.6][PATCH] features/intel-pinctrl: add pinctrl driver for Intel Meteor Lake

2024-05-08 Thread Naveen Saini
Signed-off-by: Naveen Saini --- features/intel-pinctrl/intel-pinctrl.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/features/intel-pinctrl/intel-pinctrl.cfg b/features/intel-pinctrl/intel-pinctrl.cfg index ca928504..28abf222 100644 --- a/features/intel-pinctrl/intel-pinctrl.cfg +++

[linux-yocto][yocto-kernel-cache yocto-6.1][PATCH] nxp-imx9: Enable RTC_DRV_BBNSM for nxp-imx9

2024-05-08 Thread Xiaolei Wang via lists.yoctoproject.org
Enable RTC_DRV_BBNSM for nxp-imx9. Signed-off-by: Xiaolei Wang --- bsp/nxp-imx9/nxp-imx9.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/bsp/nxp-imx9/nxp-imx9.cfg b/bsp/nxp-imx9/nxp-imx9.cfg index d68b93be..4726803b 100644 --- a/bsp/nxp-imx9/nxp-imx9.cfg +++ b/bsp/nxp-imx9/nxp-imx9.cfg

[linux-yocto] [PATCH 2/2] mmc: cavium-thunderx: Drop the IRQF_NO_THREAD constraint

2024-05-08 Thread Ruiqiang Hao via lists.yoctoproject.org
From: Ruiqiang Hao The IRQF_NO_THREAD is added by a Marvell SDK12 patch commit 65549eba1b08 ("mmc: octeontx2: fix swiotlb buffer is full") in order to get back some of the performance loss. But in some cases (such as rt kernel), we need the capability to thread irq handler. Otherwise we would

[linux-yocto][linux-yocto v6.1] kernel code for marvell octeon

2024-05-08 Thread Ruiqiang Hao via lists.yoctoproject.org
Hi Bruce, Please help to merge code into our linux-yocto repo. repo: linux-yocto branch: v6.1/standard/cn-sdkv6.1/octeon v6.1/standard/preempt-rt/cn-sdkv6.1/octeon Thanks, Ruiqiang -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group.

[linux-yocto] [PATCH 1/2] irqchip/gic-v3: change gic_ipi_track::lock type

2024-05-08 Thread Ruiqiang Hao via lists.yoctoproject.org
From: Ruiqiang Hao When start with preempt-rt kernel, the following problem occurs. Change the type of gic_ipi_track::lock from spinlock_t to raw_spinlock_t to fix this. BUG: sleeping function called from invalid context at kernel/locking/spinlock_rt.c:46 in_atomic(): 1, irqs_disabled(): 128,

Re: [linux-yocto] [PATCH linux-yocto 0/8] nxp-soc: Fix misc build failures

2024-05-08 Thread Bruce Ashfield
| 4 ++-- > 12 files changed, 25 insertions(+), 26 deletions(-) > --- > base-commit: 303189dd5cf54be5a7a73e27b1cf95c961403281 > change-id: 20240508-nxp-misc-91bf137ef1c7 > > Best regards, > -- > Kevin Hao > -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent

[linux-yocto] [PATCH linux-yocto 8/8] thermal: device_cooling: Rename devfreq_cooling_un/register() to device_cooling_un/register()

2024-05-08 Thread Kevin Hao
From: Kevin Hao These two functions were introduced by SDK commit ea89facb789f ("thermal: Add generic device cooling support") and used by several imx and qoriq thermal drivers. But its name conflict with the functions in the devfreq_cooling.c. So rename them to fix the build errors.

[linux-yocto] [PATCH linux-yocto 7/8] PM: wakeup: export pm_system_irq_wakeup()

2024-05-08 Thread Kevin Hao
From: Kevin Hao The pm_system_irq_wakeup() is called in drivers/mailbox/imx-mailbox.c. If we don't export it, compiling imx-mailbox as a module would fail. Fixes: 4f494c86d83f ("MLK-25649-4 mailbox: imx: Add support for identifying SCU wakeup source from sysfs") Signed-off-by: Kevin Hao ---

[linux-yocto] [PATCH linux-yocto 6/8] dmaengine: fsl-edma: export fsl_edma_get_realcnt()

2024-05-08 Thread Kevin Hao
From: Kevin Hao The fsl_edma_get_realcnt() is called in drivers/dma/fsl-edma.c. If we don't export it, compiling fsl-edma as a module would fail. Fixed: 276ac35c4517 ("dmaengine: fsl-edma: calculate the real count for slave sg") Signed-off-by: Kevin Hao --- drivers/dma/fsl-edma-common.c | 1

[linux-yocto] [PATCH linux-yocto 5/8] drm: rockchip: Fix the incorrect reference to audio_pdev

2024-05-08 Thread Kevin Hao
From: Kevin Hao The audio_pdev has been moved from struct cdn_dp_device to struct cdns_mhdp_device by SDK commit 33c5a61621c2 ("drm: bridge: mhdp: Add cdns mhdp driver bridge driver"), fix a missed incorrect reference to it. Signed-off-by: Kevin Hao --- drivers/gpu/drm/rockchip/cdn-dp-core.c

[linux-yocto] [PATCH linux-yocto 4/8] ASoC: fsl: Fix implicit declaration of function 'fsl_easrc_m2m_init'

2024-05-08 Thread Kevin Hao
From: Kevin Hao Shuffle the location of '#include "fsl_easrc_m2m.c"' upwards to fix the following build error: sound/soc/fsl/fsl_easrc.c: In function 'fsl_easrc_hw_params': sound/soc/fsl/fsl_easrc.c:1511:15: error: implicit declaration of function 'fsl_easrc_m2m_init'

[linux-yocto] [PATCH linux-yocto 3/8] arm64: dts: Delete the reference of nonexistent dtbs

2024-05-08 Thread Kevin Hao
From: Kevin Hao - When porting SDK patches, the imx8mm-evk-root.dtb is deleted by the commit 35e4c9ea1ae8 ("LF-4887-15 arm64: dts: imx8mm-ddr4-evk-revb: Add RAYDIUM RM67191 command RAM display operation mode support"), but it is still referenced in the Makefile. - The SDK commit

[linux-yocto] [PATCH linux-yocto 2/8] arm64: dts: Fix a typo in imx8qxp-mek-dpu-lcdif-rpmsg.dtb name

2024-05-08 Thread Kevin Hao
From: Kevin Hao In commit cd2b02d919b2 ("LF-1232-12 arm64: dts: imx8qxp-mek: Add DPU LCDIF support with rpmsg"), a 'i' was missed in the dtb name. Signed-off-by: Kevin Hao --- arch/arm64/boot/dts/freescale/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[linux-yocto] [PATCH linux-yocto 1/8] arm64: dts: Restore the mistakenly deleted imx8qxp.dtsi for imx8qxp-mek.dts

2024-05-08 Thread Kevin Hao
From: Kevin Hao The imx8qxp.dtsi has been mistakenly deleted by SDK commit 131ad0f151c0 ("LF-2361-2 arm64: dts: Add new DTS imx8x-mek for MEK common nodes") and then trigger build errors. Fixes them by restoring it back. Signed-off-by: Kevin Hao ---

[linux-yocto] [PATCH linux-yocto 0/8] nxp-soc: Fix misc build failures

2024-05-08 Thread Kevin Hao
| 4 ++-- 12 files changed, 25 insertions(+), 26 deletions(-) --- base-commit: 303189dd5cf54be5a7a73e27b1cf95c961403281 change-id: 20240508-nxp-misc-91bf137ef1c7 Best regards, -- Kevin Hao -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#13911