* [PATCH 0/2] arm64: defconfig: enable drivers for the Lenovo ThinkPad X13s
@ 2023-10-12 8:01 Johan Hovold
2023-10-12 8:01 ` [PATCH 1/2] arm64: defconfig: enable Qualcomm sc8280xp sound drivers Johan Hovold
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Johan Hovold @ 2023-10-12 8:01 UTC (permalink / raw)
To: Bjorn Andersson
Cc: Catalin Marinas, Will Deacon, Srinivas Kandagatla, Maximilian Luz,
linux-arm-kernel, linux-kernel, Johan Hovold
Enable some more drivers for Qualcomm sc8280xp based machines like the
Lenovo ThinkPad X13s so that sound and EFI variables work with the
defconfig.
Johan
Johan Hovold (2):
arm64: defconfig: enable Qualcomm sc8280xp sound drivers
arm64: defconfig: enable Qualcomm UEFI Secure App driver
arch/arm64/configs/defconfig | 4 ++++
1 file changed, 4 insertions(+)
--
2.41.0
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/2] arm64: defconfig: enable Qualcomm sc8280xp sound drivers
2023-10-12 8:01 [PATCH 0/2] arm64: defconfig: enable drivers for the Lenovo ThinkPad X13s Johan Hovold
@ 2023-10-12 8:01 ` Johan Hovold
2023-10-12 8:01 ` [PATCH 2/2] arm64: defconfig: enable Qualcomm UEFI Secure App driver Johan Hovold
2023-12-17 21:06 ` [PATCH 0/2] arm64: defconfig: enable drivers for the Lenovo ThinkPad X13s Bjorn Andersson
2 siblings, 0 replies; 4+ messages in thread
From: Johan Hovold @ 2023-10-12 8:01 UTC (permalink / raw)
To: Bjorn Andersson
Cc: Catalin Marinas, Will Deacon, Srinivas Kandagatla, Maximilian Luz,
linux-arm-kernel, linux-kernel, Johan Hovold
Enable the Qualcomm sc8280xp machine driver and the wsa833x speaker
codec driver that are needed for sound on machines like the Lenovo
ThinkPad X13s.
Note that the wcd938x headphone codec driver is currently implicitly
enabled as it is selected by the sc7280 machine driver.
Signed-off-by: Johan Hovold <johan+linaro@kernel.org>
---
arch/arm64/configs/defconfig | 2 ++
1 file changed, 2 insertions(+)
diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index 7e6c49d42104..6e67e75161e5 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -909,6 +909,7 @@ CONFIG_SND_SOC_APQ8016_SBC=m
CONFIG_SND_SOC_MSM8996=m
CONFIG_SND_SOC_SDM845=m
CONFIG_SND_SOC_SM8250=m
+CONFIG_SND_SOC_SC8280XP=m
CONFIG_SND_SOC_SC7180=m
CONFIG_SND_SOC_SC7280=m
CONFIG_SND_SOC_ROCKCHIP=m
@@ -966,6 +967,7 @@ CONFIG_SND_SOC_WM8960=m
CONFIG_SND_SOC_WM8962=m
CONFIG_SND_SOC_WM8978=m
CONFIG_SND_SOC_WSA881X=m
+CONFIG_SND_SOC_WSA883X=m
CONFIG_SND_SOC_NAU8822=m
CONFIG_SND_SOC_LPASS_WSA_MACRO=m
CONFIG_SND_SOC_LPASS_VA_MACRO=m
--
2.41.0
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/2] arm64: defconfig: enable Qualcomm UEFI Secure App driver
2023-10-12 8:01 [PATCH 0/2] arm64: defconfig: enable drivers for the Lenovo ThinkPad X13s Johan Hovold
2023-10-12 8:01 ` [PATCH 1/2] arm64: defconfig: enable Qualcomm sc8280xp sound drivers Johan Hovold
@ 2023-10-12 8:01 ` Johan Hovold
2023-12-17 21:06 ` [PATCH 0/2] arm64: defconfig: enable drivers for the Lenovo ThinkPad X13s Bjorn Andersson
2 siblings, 0 replies; 4+ messages in thread
From: Johan Hovold @ 2023-10-12 8:01 UTC (permalink / raw)
To: Bjorn Andersson
Cc: Catalin Marinas, Will Deacon, Srinivas Kandagatla, Maximilian Luz,
linux-arm-kernel, linux-kernel, Johan Hovold
Enable the Qualcomm QSEECOM interface driver and the UEFI Secure
Application client driver which are needed to access EFI variables on
machines like the Lenovo ThinkPad X13s.
Signed-off-by: Johan Hovold <johan+linaro@kernel.org>
---
arch/arm64/configs/defconfig | 2 ++
1 file changed, 2 insertions(+)
diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index 6e67e75161e5..fff99bdd3270 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -252,6 +252,8 @@ CONFIG_ARM_SCPI_PROTOCOL=y
CONFIG_RASPBERRYPI_FIRMWARE=y
CONFIG_INTEL_STRATIX10_SERVICE=y
CONFIG_INTEL_STRATIX10_RSU=m
+CONFIG_QCOM_QSEECOM=y
+CONFIG_QCOM_QSEECOM_UEFISECAPP=y
CONFIG_EFI_CAPSULE_LOADER=y
CONFIG_IMX_SCU=y
CONFIG_IMX_SCU_PD=y
--
2.41.0
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 0/2] arm64: defconfig: enable drivers for the Lenovo ThinkPad X13s
2023-10-12 8:01 [PATCH 0/2] arm64: defconfig: enable drivers for the Lenovo ThinkPad X13s Johan Hovold
2023-10-12 8:01 ` [PATCH 1/2] arm64: defconfig: enable Qualcomm sc8280xp sound drivers Johan Hovold
2023-10-12 8:01 ` [PATCH 2/2] arm64: defconfig: enable Qualcomm UEFI Secure App driver Johan Hovold
@ 2023-12-17 21:06 ` Bjorn Andersson
2 siblings, 0 replies; 4+ messages in thread
From: Bjorn Andersson @ 2023-12-17 21:06 UTC (permalink / raw)
To: Bjorn Andersson, Johan Hovold
Cc: Catalin Marinas, Will Deacon, Srinivas Kandagatla, Maximilian Luz,
linux-arm-kernel, linux-kernel
On Thu, 12 Oct 2023 10:01:55 +0200, Johan Hovold wrote:
> Enable some more drivers for Qualcomm sc8280xp based machines like the
> Lenovo ThinkPad X13s so that sound and EFI variables work with the
> defconfig.
>
> Johan
>
>
> [...]
Applied, thanks!
[1/2] arm64: defconfig: enable Qualcomm sc8280xp sound drivers
commit: 223e8af324985de9e0b5b4cda2ec29783410f13f
[2/2] arm64: defconfig: enable Qualcomm UEFI Secure App driver
commit: 48490899007ae98faf8a0071a602174502b8eefc
Best regards,
--
Bjorn Andersson <andersson@kernel.org>
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-12-17 21:06 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-12 8:01 [PATCH 0/2] arm64: defconfig: enable drivers for the Lenovo ThinkPad X13s Johan Hovold
2023-10-12 8:01 ` [PATCH 1/2] arm64: defconfig: enable Qualcomm sc8280xp sound drivers Johan Hovold
2023-10-12 8:01 ` [PATCH 2/2] arm64: defconfig: enable Qualcomm UEFI Secure App driver Johan Hovold
2023-12-17 21:06 ` [PATCH 0/2] arm64: defconfig: enable drivers for the Lenovo ThinkPad X13s Bjorn Andersson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).