2023-02-02 09:00:27

by Bartosz Golaszewski

[permalink] [raw]
Subject: [RESEND PATCH] arm64: defconfig: enable drivers required by the Qualcomm SA8775P platform

From: Bartosz Golaszewski <[email protected]>

Enable the pinctrl, GCC clock and interconnect drivers in order to allow
booting SA8775P boards. The drivers need to be built-in for QUPv3 and
subsequently UART console to work.

Signed-off-by: Bartosz Golaszewski <[email protected]>
---
All drivers are now in next so let's enable them.

arch/arm64/configs/defconfig | 2 ++
1 file changed, 2 insertions(+)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index 984553d55e17..998ca0e07689 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -560,6 +560,7 @@ CONFIG_PINCTRL_QCM2290=y
CONFIG_PINCTRL_QCS404=y
CONFIG_PINCTRL_QDF2XXX=y
CONFIG_PINCTRL_QCOM_SPMI_PMIC=y
+CONFIG_PINCTRL_SA8775P=y
CONFIG_PINCTRL_SC7180=y
CONFIG_PINCTRL_SC7280=y
CONFIG_PINCTRL_SC8180X=y
@@ -1352,6 +1353,7 @@ CONFIG_INTERCONNECT_QCOM_MSM8916=m
CONFIG_INTERCONNECT_QCOM_MSM8996=m
CONFIG_INTERCONNECT_QCOM_OSM_L3=m
CONFIG_INTERCONNECT_QCOM_QCS404=m
+CONFIG_INTERCONNECT_QCOM_SA8775P=y
CONFIG_INTERCONNECT_QCOM_SC7180=y
CONFIG_INTERCONNECT_QCOM_SC7280=y
CONFIG_INTERCONNECT_QCOM_SC8180X=y
--
2.37.2



2023-02-02 09:17:13

by Krzysztof Kozlowski

[permalink] [raw]
Subject: Re: [RESEND PATCH] arm64: defconfig: enable drivers required by the Qualcomm SA8775P platform

On 02/02/2023 09:59, Bartosz Golaszewski wrote:
> From: Bartosz Golaszewski <[email protected]>
>
> Enable the pinctrl, GCC clock and interconnect drivers in order to allow
> booting SA8775P boards. The drivers need to be built-in for QUPv3 and
> subsequently UART console to work.
>
> Signed-off-by: Bartosz Golaszewski <[email protected]>
> ---


Reviewed-by: Krzysztof Kozlowski <[email protected]>

Best regards,
Krzysztof


2023-02-02 09:23:30

by Dmitry Baryshkov

[permalink] [raw]
Subject: Re: [RESEND PATCH] arm64: defconfig: enable drivers required by the Qualcomm SA8775P platform

On 02/02/2023 10:59, Bartosz Golaszewski wrote:
> From: Bartosz Golaszewski <[email protected]>
>
> Enable the pinctrl, GCC clock and interconnect drivers in order to allow
> booting SA8775P boards. The drivers need to be built-in for QUPv3 and
> subsequently UART console to work.
>
> Signed-off-by: Bartosz Golaszewski <[email protected]>

Reviewed-by: Dmitry Baryshkov <[email protected]>

Note, you didn't include linux-arm-msm into the To/Cc, so this patch
might miss Bjorn's patchwork.

> ---
> All drivers are now in next so let's enable them.
>
> arch/arm64/configs/defconfig | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
> index 984553d55e17..998ca0e07689 100644
> --- a/arch/arm64/configs/defconfig
> +++ b/arch/arm64/configs/defconfig
> @@ -560,6 +560,7 @@ CONFIG_PINCTRL_QCM2290=y
> CONFIG_PINCTRL_QCS404=y
> CONFIG_PINCTRL_QDF2XXX=y
> CONFIG_PINCTRL_QCOM_SPMI_PMIC=y
> +CONFIG_PINCTRL_SA8775P=y
> CONFIG_PINCTRL_SC7180=y
> CONFIG_PINCTRL_SC7280=y
> CONFIG_PINCTRL_SC8180X=y
> @@ -1352,6 +1353,7 @@ CONFIG_INTERCONNECT_QCOM_MSM8916=m
> CONFIG_INTERCONNECT_QCOM_MSM8996=m
> CONFIG_INTERCONNECT_QCOM_OSM_L3=m
> CONFIG_INTERCONNECT_QCOM_QCS404=m
> +CONFIG_INTERCONNECT_QCOM_SA8775P=y
> CONFIG_INTERCONNECT_QCOM_SC7180=y
> CONFIG_INTERCONNECT_QCOM_SC7280=y
> CONFIG_INTERCONNECT_QCOM_SC8180X=y

--
With best wishes
Dmitry


2023-02-02 09:34:11

by Bartosz Golaszewski

[permalink] [raw]
Subject: Re: [RESEND PATCH] arm64: defconfig: enable drivers required by the Qualcomm SA8775P platform

On Thu, 2 Feb 2023 at 10:23, Dmitry Baryshkov
<[email protected]> wrote:
>
> On 02/02/2023 10:59, Bartosz Golaszewski wrote:
> > From: Bartosz Golaszewski <[email protected]>
> >
> > Enable the pinctrl, GCC clock and interconnect drivers in order to allow
> > booting SA8775P boards. The drivers need to be built-in for QUPv3 and
> > subsequently UART console to work.
> >
> > Signed-off-by: Bartosz Golaszewski <[email protected]>
>
> Reviewed-by: Dmitry Baryshkov <[email protected]>
>
> Note, you didn't include linux-arm-msm into the To/Cc, so this patch
> might miss Bjorn's patchwork.
>

Thanks for the heads-up, I'll resend it if he doesn't pick it up in
the following days.

Bart