[linux-yocto] [PATCH 2/2] kernel-cache: enable kernel configs to support for editing socket buffer's priority

2022-09-12 Thread Meng Li
To edit a socket buffer's priority using tc, it needs to enable below 2 configs.
CONFIG_NET_EMATCH=y
CONFIG_NET_ACT_SKBEDIT=y

Signed-off-by: Meng Li 
---
 features/net_sched/net_sched.cfg | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/features/net_sched/net_sched.cfg b/features/net_sched/net_sched.cfg
index c9714dab..97d1191e 100644
--- a/features/net_sched/net_sched.cfg
+++ b/features/net_sched/net_sched.cfg
@@ -31,3 +31,5 @@ CONFIG_NET_CLS_BASIC=y
 CONFIG_NET_CLS_CGROUP=y
 CONFIG_NET_CLS_U32=y
 CONFIG_NET_ACT_MIRRED=m
+CONFIG_NET_ACT_SKBEDIT=m
+CONFIG_NET_EMATCH=y
-- 
2.36.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#11658): 
https://lists.yoctoproject.org/g/linux-yocto/message/11658
Mute This Topic: https://lists.yoctoproject.org/mt/93650019/21656
Group Owner: linux-yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/linux-yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[linux-yocto] [PATCH 1/2] kernel-cache: enable Run Control and Power Management config for nxp-ls1028 platform

2022-09-12 Thread Meng Li
Signed-off-by: Meng Li 
---
 bsp/nxp-ls1028/nxp-ls1028.cfg | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/bsp/nxp-ls1028/nxp-ls1028.cfg b/bsp/nxp-ls1028/nxp-ls1028.cfg
index ea9eab32..7f9b9b09 100644
--- a/bsp/nxp-ls1028/nxp-ls1028.cfg
+++ b/bsp/nxp-ls1028/nxp-ls1028.cfg
@@ -239,3 +239,6 @@ CONFIG_CRYPTO_AES_ARM64_CE_BLK=y
 CONFIG_THERMAL=y
 CONFIG_QORIQ_THERMAL=y
 CONFIG_THERMAL_GOV_POWER_ALLOCATOR=y
+
+# Run Control and Power Management
+CONFIG_FSL_RCPM=y
-- 
2.36.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#11656): 
https://lists.yoctoproject.org/g/linux-yocto/message/11656
Mute This Topic: https://lists.yoctoproject.org/mt/93650016/21656
Group Owner: linux-yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/linux-yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[linux-yocto] [yocto-kernel-cache]: nxp-ls1028: improve kernel configs for nxp-ls1028 platform

2022-09-12 Thread Meng Li
From: Limeng 

Hi Bruce,

there are 2 patches to improve kernel configs for nxp-ls1028 platform.

Could you please help to merge them into yocto-kernel-cache, branch is only 
yocto-5.15?

diffstat info as below:

 bsp/nxp-ls1028/nxp-ls1028.cfg|3 +++
 features/net_sched/net_sched.cfg |2 ++
 2 files changed, 5 insertions(+)


thanks,
Limeng

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#11657): 
https://lists.yoctoproject.org/g/linux-yocto/message/11657
Mute This Topic: https://lists.yoctoproject.org/mt/93650017/21656
Group Owner: linux-yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/linux-yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[linux-yocto] [PATCH v5.15] bcm-2xxx-rpi: Fix select + depend CONFIG_PM Kconfig error

2022-09-12 Thread Paul Gortmaker
There is a Kconfig logic conflict as of 6ae22abe53d4 ("Merge branch
'v5.15/standard/base' into v5.15/standard/bcm-2xxx-rpi") between r-pi
SDK content:

  commit b3d4b7b5af94def890f1d814414cfef9d16a7fa3
  Author: Maxime Ripard 
  Date:   Thu Aug 19 15:53:03 2021 +0200

drm/vc4: select PM

commit  39cf7db9b384a651d481d0b04d9dee540624302a from
https://github.com/raspberrypi/linux.git rpi-5.15.y

and the v5.15 backport of the upstream variant of the similar commit:

  commit 80d46e73e8d3c935b6ac976caba9f5c5c6362b92
  Author: Maxime Ripard 
  Date:   Wed Jun 29 14:34:36 2022 +0200

drm/vc4: hdmi: Depends on CONFIG_PM

commit 72e2329e7c9bbe15e7a813670497ec9c6f919af3 upstream.

If you have both "depends" and "select" for the same variable, you get:

 kernel/power/Kconfig:164:error: recursive dependency detected!
 kernel/power/Kconfig:164:   symbol PM is selected by DRM_VC4
 drivers/gpu/drm/vc4/Kconfig:2:  symbol DRM_VC4 depends on PM
 For a resolution refer to Documentation/kbuild/kconfig-language.rst
 subsection "Kconfig recursive dependency limitations"

Delete the select from the SDK and keep the mainline backport depend.

Signed-off-by: Paul Gortmaker 
---

Bruce:  This is for v5.15/standard/bcm-2xxx-rpi branch.  I would have
expected that it would be needed for the -rt variant as well, but for
some reason the -rt never got the original r-pi SDK "select" addition.

 drivers/gpu/drm/vc4/Kconfig | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/gpu/drm/vc4/Kconfig b/drivers/gpu/drm/vc4/Kconfig
index 4ed07b7cefe3..e2c147d4015e 100644
--- a/drivers/gpu/drm/vc4/Kconfig
+++ b/drivers/gpu/drm/vc4/Kconfig
@@ -10,7 +10,6 @@ config DRM_VC4
select DRM_KMS_CMA_HELPER
select DRM_GEM_CMA_HELPER
select DRM_PANEL_BRIDGE
-   select PM
select SND_PCM
select SND_PCM_ELD
select SND_SOC_GENERIC_DMAENGINE_PCM
-- 
2.32.0





-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#11655): 
https://lists.yoctoproject.org/g/linux-yocto/message/11655
Mute This Topic: https://lists.yoctoproject.org/mt/93637318/21656
Group Owner: linux-yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/linux-yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-