* [PATCH 1/5] arm64: defconfig: Enable some Qualcomm drivers
@ 2022-01-31 16:50 Dmitry Baryshkov
2022-01-31 16:50 ` [PATCH 2/5] arm64: defconfig: enable ath11k driver Dmitry Baryshkov
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Dmitry Baryshkov @ 2022-01-31 16:50 UTC (permalink / raw)
To: Andy Gross, Bjorn Andersson, Catalin Marinas, Will Deacon
Cc: linux-arm-msm, linux-arm-kernel
Enable coincell, fastrpc, mailbox and adc-tm5 drivers to be built as
modules. These driver are used on many of Qualcomm platforms.
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
---
arch/arm64/configs/defconfig | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index 30516dc0b70e..ab1920df6c27 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -270,6 +270,8 @@ CONFIG_BLK_DEV_LOOP=y
CONFIG_BLK_DEV_NBD=m
CONFIG_VIRTIO_BLK=y
CONFIG_BLK_DEV_NVME=m
+CONFIG_QCOM_COINCELL=m
+CONFIG_QCOM_FASTRPC=m
CONFIG_SRAM=y
CONFIG_PCI_ENDPOINT_TEST=m
CONFIG_EEPROM_AT24=m
@@ -586,6 +588,7 @@ CONFIG_TEGRA_SOCTHERM=m
CONFIG_QCOM_TSENS=y
CONFIG_QCOM_SPMI_TEMP_ALARM=m
CONFIG_QCOM_LMH=m
+CONFIG_QCOM_SPMI_ADC_TM5=m
CONFIG_UNIPHIER_THERMAL=y
CONFIG_WATCHDOG=y
CONFIG_SL28CPLD_WATCHDOG=m
@@ -1050,6 +1053,7 @@ CONFIG_FSL_DPAA=y
CONFIG_FSL_MC_DPIO=y
CONFIG_FSL_RCPM=y
CONFIG_MTK_PMIC_WRAP=y
+CONFIG_MAILBOX=y
CONFIG_QCOM_AOSS_QMP=y
CONFIG_QCOM_COMMAND_DB=y
CONFIG_QCOM_GENI_SE=y
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 2/5] arm64: defconfig: enable ath11k driver
2022-01-31 16:50 [PATCH 1/5] arm64: defconfig: Enable some Qualcomm drivers Dmitry Baryshkov
@ 2022-01-31 16:50 ` Dmitry Baryshkov
2022-01-31 16:50 ` [PATCH 3/5] arm64: defconfig: enable mcp251xfd driver Dmitry Baryshkov
` (3 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Dmitry Baryshkov @ 2022-01-31 16:50 UTC (permalink / raw)
To: Andy Gross, Bjorn Andersson, Catalin Marinas, Will Deacon
Cc: linux-arm-msm, linux-arm-kernel
Enable Atheros Ath11k driver to be built on arm64 platforms.
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
---
arch/arm64/configs/defconfig | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index ab1920df6c27..c72ae4a421d7 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -382,6 +382,9 @@ CONFIG_ATH10K=m
CONFIG_ATH10K_PCI=m
CONFIG_ATH10K_SNOC=m
CONFIG_WCN36XX=m
+CONFIG_ATH11K=m
+CONFIG_ATH11K_AHB=m
+CONFIG_ATH11K_PCI=m
CONFIG_BRCMFMAC=m
CONFIG_MWIFIEX=m
CONFIG_MWIFIEX_PCIE=m
@@ -1228,6 +1231,7 @@ CONFIG_NLS_CODEPAGE_437=y
CONFIG_NLS_ISO8859_1=y
CONFIG_SECURITY=y
CONFIG_CRYPTO_ECHAINIV=y
+CONFIG_CRYPTO_MICHAEL_MIC=m
CONFIG_CRYPTO_ANSI_CPRNG=y
CONFIG_CRYPTO_USER_API_RNG=m
CONFIG_CRYPTO_DEV_SUN8I_CE=m
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 3/5] arm64: defconfig: enable mcp251xfd driver
2022-01-31 16:50 [PATCH 1/5] arm64: defconfig: Enable some Qualcomm drivers Dmitry Baryshkov
2022-01-31 16:50 ` [PATCH 2/5] arm64: defconfig: enable ath11k driver Dmitry Baryshkov
@ 2022-01-31 16:50 ` Dmitry Baryshkov
2022-01-31 16:50 ` [PATCH 4/5] arm64: defconfig: Enable PM8916 watchdog driver Dmitry Baryshkov
` (2 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Dmitry Baryshkov @ 2022-01-31 16:50 UTC (permalink / raw)
To: Andy Gross, Bjorn Andersson, Catalin Marinas, Will Deacon
Cc: linux-arm-msm, linux-arm-kernel
Enable CAN_MCP251XFD for the CAN chip used on the Qualcomm RB5 board.
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
---
arch/arm64/configs/defconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index c72ae4a421d7..bb30afa95a73 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -187,6 +187,7 @@ CONFIG_CAN=m
CONFIG_CAN_RCAR=m
CONFIG_CAN_RCAR_CANFD=m
CONFIG_CAN_FLEXCAN=m
+CONFIG_CAN_MCP251XFD=m
CONFIG_BT=m
CONFIG_BT_HIDP=m
# CONFIG_BT_HS is not set
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 4/5] arm64: defconfig: Enable PM8916 watchdog driver
2022-01-31 16:50 [PATCH 1/5] arm64: defconfig: Enable some Qualcomm drivers Dmitry Baryshkov
2022-01-31 16:50 ` [PATCH 2/5] arm64: defconfig: enable ath11k driver Dmitry Baryshkov
2022-01-31 16:50 ` [PATCH 3/5] arm64: defconfig: enable mcp251xfd driver Dmitry Baryshkov
@ 2022-01-31 16:50 ` Dmitry Baryshkov
2022-01-31 18:30 ` Bjorn Andersson
2022-01-31 16:50 ` [PATCH 5/5] arm64: defconfig: Enable SM8250 video clock controller Dmitry Baryshkov
2022-02-01 5:19 ` (subset) [PATCH 1/5] arm64: defconfig: Enable some Qualcomm drivers Bjorn Andersson
4 siblings, 1 reply; 7+ messages in thread
From: Dmitry Baryshkov @ 2022-01-31 16:50 UTC (permalink / raw)
To: Andy Gross, Bjorn Andersson, Catalin Marinas, Will Deacon
Cc: linux-arm-msm, linux-arm-kernel, Aníbal Limón
From: Aníbal Limón <anibal.limon@linaro.org>
Signed-off-by: Aníbal Limón <anibal.limon@linaro.org>
---
arch/arm64/configs/defconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index bb30afa95a73..8a68dadbcc7d 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -596,6 +596,7 @@ CONFIG_QCOM_SPMI_ADC_TM5=m
CONFIG_UNIPHIER_THERMAL=y
CONFIG_WATCHDOG=y
CONFIG_SL28CPLD_WATCHDOG=m
+CONFIG_PM8916_WATCHDOG=y
CONFIG_ARM_SP805_WATCHDOG=y
CONFIG_ARM_SBSA_WATCHDOG=y
CONFIG_ARM_SMC_WATCHDOG=y
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 5/5] arm64: defconfig: Enable SM8250 video clock controller
2022-01-31 16:50 [PATCH 1/5] arm64: defconfig: Enable some Qualcomm drivers Dmitry Baryshkov
` (2 preceding siblings ...)
2022-01-31 16:50 ` [PATCH 4/5] arm64: defconfig: Enable PM8916 watchdog driver Dmitry Baryshkov
@ 2022-01-31 16:50 ` Dmitry Baryshkov
2022-02-01 5:19 ` (subset) [PATCH 1/5] arm64: defconfig: Enable some Qualcomm drivers Bjorn Andersson
4 siblings, 0 replies; 7+ messages in thread
From: Dmitry Baryshkov @ 2022-01-31 16:50 UTC (permalink / raw)
To: Andy Gross, Bjorn Andersson, Catalin Marinas, Will Deacon
Cc: linux-arm-msm, linux-arm-kernel, Bryan O'Donoghue
From: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
Enable the building of the sm8250 video clock controller by default.
Signed-off-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
---
arch/arm64/configs/defconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index 8a68dadbcc7d..b2da438a40af 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -1024,6 +1024,7 @@ CONFIG_SM_GCC_8350=y
CONFIG_SM_GPUCC_8150=y
CONFIG_SM_GPUCC_8250=y
CONFIG_SM_DISPCC_8250=y
+CONFIG_SM_VIDEOCC_8250=y
CONFIG_QCOM_HFPLL=y
CONFIG_CLK_GFM_LPASS_SM8250=m
CONFIG_CLK_RCAR_USB2_CLOCK_SEL=y
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH 4/5] arm64: defconfig: Enable PM8916 watchdog driver
2022-01-31 16:50 ` [PATCH 4/5] arm64: defconfig: Enable PM8916 watchdog driver Dmitry Baryshkov
@ 2022-01-31 18:30 ` Bjorn Andersson
0 siblings, 0 replies; 7+ messages in thread
From: Bjorn Andersson @ 2022-01-31 18:30 UTC (permalink / raw)
To: Dmitry Baryshkov
Cc: Andy Gross, Catalin Marinas, Will Deacon, linux-arm-msm,
linux-arm-kernel, An?bal Lim?n
On Mon 31 Jan 10:50 CST 2022, Dmitry Baryshkov wrote:
> From: Aníbal Limón <anibal.limon@linaro.org>
>
> Signed-off-by: Aníbal Limón <anibal.limon@linaro.org>
I need your S-o-b appended to the author's as you handle the patch (same
with the last patch).
> ---
> arch/arm64/configs/defconfig | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
> index bb30afa95a73..8a68dadbcc7d 100644
> --- a/arch/arm64/configs/defconfig
> +++ b/arch/arm64/configs/defconfig
> @@ -596,6 +596,7 @@ CONFIG_QCOM_SPMI_ADC_TM5=m
> CONFIG_UNIPHIER_THERMAL=y
> CONFIG_WATCHDOG=y
> CONFIG_SL28CPLD_WATCHDOG=m
> +CONFIG_PM8916_WATCHDOG=y
Is there any reason why this is =y and not =m?
PS. I'm picking up patch 1-3, no need to resend them.
Regards,
Bjorn
> CONFIG_ARM_SP805_WATCHDOG=y
> CONFIG_ARM_SBSA_WATCHDOG=y
> CONFIG_ARM_SMC_WATCHDOG=y
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: (subset) [PATCH 1/5] arm64: defconfig: Enable some Qualcomm drivers
2022-01-31 16:50 [PATCH 1/5] arm64: defconfig: Enable some Qualcomm drivers Dmitry Baryshkov
` (3 preceding siblings ...)
2022-01-31 16:50 ` [PATCH 5/5] arm64: defconfig: Enable SM8250 video clock controller Dmitry Baryshkov
@ 2022-02-01 5:19 ` Bjorn Andersson
4 siblings, 0 replies; 7+ messages in thread
From: Bjorn Andersson @ 2022-02-01 5:19 UTC (permalink / raw)
To: Catalin Marinas, Dmitry Baryshkov, Andy Gross, Will Deacon
Cc: linux-arm-kernel, linux-arm-msm
On Mon, 31 Jan 2022 19:50:52 +0300, Dmitry Baryshkov wrote:
> Enable coincell, fastrpc, mailbox and adc-tm5 drivers to be built as
> modules. These driver are used on many of Qualcomm platforms.
>
>
Applied, thanks!
[1/5] arm64: defconfig: Enable some Qualcomm drivers
commit: 1677e64d480d190959c971a69c17e8da27bd3e17
[2/5] arm64: defconfig: enable ath11k driver
commit: af2d38db2674139182e0cea4552cc83cbb8db0d0
[3/5] arm64: defconfig: enable mcp251xfd driver
commit: 17ef0b4b441f755ad81800167a672ecbeeafb6c5
Best regards,
--
Bjorn Andersson <bjorn.andersson@linaro.org>
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2022-02-01 5:21 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-31 16:50 [PATCH 1/5] arm64: defconfig: Enable some Qualcomm drivers Dmitry Baryshkov
2022-01-31 16:50 ` [PATCH 2/5] arm64: defconfig: enable ath11k driver Dmitry Baryshkov
2022-01-31 16:50 ` [PATCH 3/5] arm64: defconfig: enable mcp251xfd driver Dmitry Baryshkov
2022-01-31 16:50 ` [PATCH 4/5] arm64: defconfig: Enable PM8916 watchdog driver Dmitry Baryshkov
2022-01-31 18:30 ` Bjorn Andersson
2022-01-31 16:50 ` [PATCH 5/5] arm64: defconfig: Enable SM8250 video clock controller Dmitry Baryshkov
2022-02-01 5:19 ` (subset) [PATCH 1/5] arm64: defconfig: Enable some Qualcomm drivers 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).