* [PATCH v2] arm64: defconfig: Enable configs for MT8195-Cherry-Tomato Chromebook
@ 2023-11-22 18:13 Nícolas F. R. A. Prado
2023-11-22 18:23 ` Krzysztof Kozlowski
2023-12-12 10:50 ` AngeloGioacchino Del Regno
0 siblings, 2 replies; 3+ messages in thread
From: Nícolas F. R. A. Prado @ 2023-11-22 18:13 UTC (permalink / raw)
To: Matthias Brugger, AngeloGioacchino Del Regno
Cc: kernel, Nícolas F. R. A. Prado, Arnd Bergmann,
Bjorn Andersson, Catalin Marinas, Dmitry Baryshkov,
Geert Uytterhoeven, Konrad Dybcio, Krzysztof Kozlowski,
Marek Szyprowski, Neil Armstrong, Peng Fan, Udit Kumar,
Will Deacon, linux-arm-kernel, linux-kernel
Enable missing configs needed to boot the MT8195-Cherry-Tomato
Chromebook with full support on the defconfig.
The configs enabled bring in support for the DSP and sound card,
display, thermal sensor and keyboard backlight.
Signed-off-by: Nícolas F. R. A. Prado <nfraprado@collabora.com>
---
This patch relies on another patch [1] fixing support for the Mediatek
DP when enabled as a module.
[1] https://lore.kernel.org/all/20231121142938.460846-1-nfraprado@collabora.com
Changes in v2:
- Dropped change of CONFIG_USB_ONBOARD_HUB as it isn't required by the
platform. (It causing boot issues when =m will be investigated and
fixed separately.)
arch/arm64/configs/defconfig | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index b60aa1f89343..ea9e2ca2178f 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -252,6 +252,7 @@ CONFIG_ARM_SCPI_PROTOCOL=y
CONFIG_RASPBERRYPI_FIRMWARE=y
CONFIG_INTEL_STRATIX10_SERVICE=y
CONFIG_INTEL_STRATIX10_RSU=m
+CONFIG_MTK_ADSP_IPC=m
CONFIG_EFI_CAPSULE_LOADER=y
CONFIG_IMX_SCU=y
CONFIG_IMX_SCU_PD=y
@@ -675,6 +676,8 @@ CONFIG_RCAR_THERMAL=y
CONFIG_RCAR_GEN3_THERMAL=y
CONFIG_RZG2L_THERMAL=y
CONFIG_ARMADA_THERMAL=y
+CONFIG_MTK_THERMAL=m
+CONFIG_MTK_LVTS_THERMAL=m
CONFIG_BCM2711_THERMAL=m
CONFIG_BCM2835_THERMAL=m
CONFIG_BRCMSTB_THERMAL=m
@@ -877,6 +880,7 @@ CONFIG_DRM_ETNAVIV=m
CONFIG_DRM_HISI_HIBMC=m
CONFIG_DRM_HISI_KIRIN=m
CONFIG_DRM_MEDIATEK=m
+CONFIG_DRM_MEDIATEK_DP=m
CONFIG_DRM_MEDIATEK_HDMI=m
CONFIG_DRM_MXSFB=m
CONFIG_DRM_MESON=m
@@ -913,6 +917,8 @@ CONFIG_SND_SOC_MT8183_MT6358_TS3A227E_MAX98357A=m
CONFIG_SND_SOC_MT8183_DA7219_MAX98357A=m
CONFIG_SND_SOC_MT8192=m
CONFIG_SND_SOC_MT8192_MT6359_RT1015_RT5682=m
+CONFIG_SND_SOC_MT8195=m
+CONFIG_SND_SOC_MT8195_MT6359=m
CONFIG_SND_MESON_AXG_SOUND_CARD=m
CONFIG_SND_MESON_GX_SOUND_CARD=m
CONFIG_SND_SOC_QCOM=m
@@ -930,6 +936,10 @@ CONFIG_SND_SOC_RK3399_GRU_SOUND=m
CONFIG_SND_SOC_SAMSUNG=y
CONFIG_SND_SOC_RCAR=m
CONFIG_SND_SOC_RZ=m
+CONFIG_SND_SOC_SOF_TOPLEVEL=y
+CONFIG_SND_SOC_SOF_OF=y
+CONFIG_SND_SOC_SOF_MTK_TOPLEVEL=y
+CONFIG_SND_SOC_SOF_MT8195=m
CONFIG_SND_SUN8I_CODEC=m
CONFIG_SND_SUN8I_CODEC_ANALOG=m
CONFIG_SND_SUN50I_CODEC_ANALOG=m
@@ -1183,6 +1193,7 @@ CONFIG_CROS_EC=y
CONFIG_CROS_EC_I2C=y
CONFIG_CROS_EC_RPMSG=m
CONFIG_CROS_EC_SPI=y
+CONFIG_CROS_KBD_LED_BACKLIGHT=m
CONFIG_CROS_EC_CHARDEV=m
CONFIG_COMMON_CLK_RK808=y
CONFIG_COMMON_CLK_SCMI=y
@@ -1279,6 +1290,7 @@ CONFIG_OMAP2PLUS_MBOX=m
CONFIG_PLATFORM_MHU=y
CONFIG_BCM2835_MBOX=y
CONFIG_QCOM_APCS_IPC=y
+CONFIG_MTK_ADSP_MBOX=m
CONFIG_QCOM_IPCC=y
CONFIG_ROCKCHIP_IOMMU=y
CONFIG_TEGRA_IOMMU_SMMU=y
--
2.42.1
_______________________________________________
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] 3+ messages in thread
* Re: [PATCH v2] arm64: defconfig: Enable configs for MT8195-Cherry-Tomato Chromebook
2023-11-22 18:13 [PATCH v2] arm64: defconfig: Enable configs for MT8195-Cherry-Tomato Chromebook Nícolas F. R. A. Prado
@ 2023-11-22 18:23 ` Krzysztof Kozlowski
2023-12-12 10:50 ` AngeloGioacchino Del Regno
1 sibling, 0 replies; 3+ messages in thread
From: Krzysztof Kozlowski @ 2023-11-22 18:23 UTC (permalink / raw)
To: Nícolas F. R. A. Prado, Matthias Brugger,
AngeloGioacchino Del Regno
Cc: kernel, Arnd Bergmann, Bjorn Andersson, Catalin Marinas,
Dmitry Baryshkov, Geert Uytterhoeven, Konrad Dybcio,
Marek Szyprowski, Neil Armstrong, Peng Fan, Udit Kumar,
Will Deacon, linux-arm-kernel, linux-kernel
On 22/11/2023 19:13, Nícolas F. R. A. Prado wrote:
> Enable missing configs needed to boot the MT8195-Cherry-Tomato
> Chromebook with full support on the defconfig.
>
> The configs enabled bring in support for the DSP and sound card,
> display, thermal sensor and keyboard backlight.
>
> Signed-off-by: Nícolas F. R. A. Prado <nfraprado@collabora.com>
>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Best regards,
Krzysztof
_______________________________________________
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] 3+ messages in thread
* Re: [PATCH v2] arm64: defconfig: Enable configs for MT8195-Cherry-Tomato Chromebook
2023-11-22 18:13 [PATCH v2] arm64: defconfig: Enable configs for MT8195-Cherry-Tomato Chromebook Nícolas F. R. A. Prado
2023-11-22 18:23 ` Krzysztof Kozlowski
@ 2023-12-12 10:50 ` AngeloGioacchino Del Regno
1 sibling, 0 replies; 3+ messages in thread
From: AngeloGioacchino Del Regno @ 2023-12-12 10:50 UTC (permalink / raw)
To: Nícolas F. R. A. Prado, Matthias Brugger
Cc: kernel, Arnd Bergmann, Bjorn Andersson, Catalin Marinas,
Dmitry Baryshkov, Geert Uytterhoeven, Konrad Dybcio,
Krzysztof Kozlowski, Marek Szyprowski, Neil Armstrong, Peng Fan,
Udit Kumar, Will Deacon, linux-arm-kernel, linux-kernel
Il 22/11/23 19:13, Nícolas F. R. A. Prado ha scritto:
> Enable missing configs needed to boot the MT8195-Cherry-Tomato
> Chromebook with full support on the defconfig.
>
> The configs enabled bring in support for the DSP and sound card,
> display, thermal sensor and keyboard backlight.
>
> Signed-off-by: Nícolas F. R. A. Prado <nfraprado@collabora.com>
>
Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
_______________________________________________
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] 3+ messages in thread
end of thread, other threads:[~2023-12-12 10:51 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-22 18:13 [PATCH v2] arm64: defconfig: Enable configs for MT8195-Cherry-Tomato Chromebook Nícolas F. R. A. Prado
2023-11-22 18:23 ` Krzysztof Kozlowski
2023-12-12 10:50 ` AngeloGioacchino Del Regno
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox