From 226459f180d328c5cbd76a47adba2f6a715c1b5f Mon Sep 17 00:00:00 2001 From: Jaehoon Chung Date: Tue, 14 Jan 2025 15:53:28 +0900 Subject: [PATCH] RISCV: configs: Enable K1X_REMOTEPROC config K1X_REMOTEPROC needs to load esos.elf firmware file. esos.elf is the firmware for the RCPU (Real-Time PCU), it's responsible for some hardware module and forwarding HDMI audio interrupt. To load the firmware file at booting time, support for loading extra_firmware.cpio from 'boot' partition has been added to the boot script. After applying this patch, disappeared the below message. [ 5.657503] DMA channel for playback is not available [ 5.662650] spacemit-snd-dma c08d0400.spacemit_snd_dma_hdmi: ASoC: error at snd_soc_pcm_component_new on c08d0400.spacemit_snd_dma_hdmi: -16 [ 5.675408] spacemit-audio-card snd-card@0: ASoC: can't create pcm SSPA2-dummy_codec :-16 [ 5.683809] spacemit-audio-card: probe of snd-card@0 failed with error -16 [ 5.732668] usb 3-1: new SuperSpeed USB device number 2 using xhci-hcd [ 5.800487] input: snd-es8326 Headset Jack as /devices/platform/snd-card@1/sound/card0/input1 Change-Id: I8ebb43ad03747343a1e51d2ade06cd348b8d68d9 Signed-off-by: Jaehoon Chung Signed-off-by: Marek Szyprowski --- arch/riscv/configs/tizen_bpif3_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/riscv/configs/tizen_bpif3_defconfig b/arch/riscv/configs/tizen_bpif3_defconfig index 555195a129fd..a7873ee98092 100644 --- a/arch/riscv/configs/tizen_bpif3_defconfig +++ b/arch/riscv/configs/tizen_bpif3_defconfig @@ -621,6 +621,7 @@ CONFIG_SPACEMIT_MAILBOX=y CONFIG_K1X_MAILBOX=y # CONFIG_IOMMU_SUPPORT is not set CONFIG_REMOTEPROC=y +CONFIG_K1X_REMOTEPROC=y CONFIG_RPMSG_VIRTIO=y # CONFIG_DPAA2_CONSOLE is not set CONFIG_SPACEMIT_PM_DOMAINS=y -- 2.34.1