diff options
author | Vasyl Vavrychuk <vasyl.vavrychuk@opensynergy.com> | 2022-05-10 16:13:12 +0200 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2022-06-08 14:23:35 +0000 |
commit | 9893e9e1a0ae33a2ea2971081dbfbfd486c4214c (patch) | |
tree | 9da3946570fd05d975f2d5faef0518ea110aafe4 /meta-egvirt/recipes-kernel/linux/linux-yocto/virtio_scmi.cfg | |
parent | db4be1a90d3f84c8255c8a3b51ae71f2eae54980 (diff) |
egvirt: linux-yocto: Adapt for kernel v5.15.
* Remove changes already present in v5.15.
* Refresh other patches.
* Document how to recreate kernel configs for future reference.
Bug-AGL: SPEC-4365
Change-Id: If8f900c9de7d8536364d71288902fd842d3ddc5f
Signed-off-by: Vasyl Vavrychuk <vasyl.vavrychuk@opensynergy.com>
Diffstat (limited to 'meta-egvirt/recipes-kernel/linux/linux-yocto/virtio_scmi.cfg')
-rw-r--r-- | meta-egvirt/recipes-kernel/linux/linux-yocto/virtio_scmi.cfg | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/meta-egvirt/recipes-kernel/linux/linux-yocto/virtio_scmi.cfg b/meta-egvirt/recipes-kernel/linux/linux-yocto/virtio_scmi.cfg index 4159ae58..b698e64a 100644 --- a/meta-egvirt/recipes-kernel/linux/linux-yocto/virtio_scmi.cfg +++ b/meta-egvirt/recipes-kernel/linux/linux-yocto/virtio_scmi.cfg @@ -1,5 +1,25 @@ +# Enable ARM_SCMI_PROTOCOL ("ARM System Control and Management Interface (SCMI) +# Message Protocol") config located in menu +# +# -> Device Drivers +# -> Firmware Drivers +# -> ARM System Control and Management Interface Protocol +# +# After that, in the same menu enabled: +# +# * ARM_SCMI_TRANSPORT_VIRTIO ("SCMI transport based on VirtIO") +# +# and disabled not used features: +# +# * ARM_SCMI_TRANSPORT_SMC ("SCMI transport based on SMC") +# * ARM_SCMI_POWER_DOMAIN ("SCMI power domain driver") + CONFIG_ARM_SCMI_PROTOCOL=y -CONFIG_VIRTIO_SCMI=y +CONFIG_ARM_SCMI_HAVE_TRANSPORT=y +CONFIG_ARM_SCMI_HAVE_MSG=y +# CONFIG_ARM_SCMI_TRANSPORT_SMC is not set +CONFIG_ARM_SCMI_TRANSPORT_VIRTIO=y # CONFIG_ARM_SCMI_POWER_DOMAIN is not set # CONFIG_SENSORS_ARM_SCMI is not set # CONFIG_COMMON_CLK_SCMI is not set +# CONFIG_IIO_SCMI is not set |