Linux ARM-MSM sub-architecture
 help / color / mirror / Atom feed
* [PATCH v2 0/3] Enable configs required to boot SDX75
@ 2023-11-16  9:35 Rohit Agarwal
  2023-11-16  9:35 ` [PATCH v2 1/3] arm64: defconfig: Enable GCC for SDX75 Rohit Agarwal
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Rohit Agarwal @ 2023-11-16  9:35 UTC (permalink / raw)
  To: catalin.marinas, will, quic_bjorande, geert+renesas,
	konrad.dybcio, arnd, krzysztof.kozlowski, neil.armstrong,
	dmitry.baryshkov, nfraprado, m.szyprowski, u-kumar1, peng.fan
  Cc: linux-arm-kernel, linux-kernel, linux-arm-msm, kernel,
	Rohit Agarwal

Hi,

Changes in v2:
 - Updated the commit message for the patches.

This series adds configs related to GCC, Pinctrl and Interconnect
that lets enable these frameworks for Qualcomm's SDX75 SoC to boot
to shell.

Thanks,
Rohit.

Rohit Agarwal (3):
  arm64: defconfig: Enable GCC for SDX75
  arm64: defconfig: Enable pinctrl for SDX75
  arm64: defconfig: Enable Interconnect for SDX75

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

-- 
2.25.1


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH v2 1/3] arm64: defconfig: Enable GCC for SDX75
  2023-11-16  9:35 [PATCH v2 0/3] Enable configs required to boot SDX75 Rohit Agarwal
@ 2023-11-16  9:35 ` Rohit Agarwal
  2023-11-16 11:16   ` Krzysztof Kozlowski
  2023-11-16  9:35 ` [PATCH v2 2/3] arm64: defconfig: Enable pinctrl " Rohit Agarwal
  2023-11-16  9:35 ` [PATCH v2 3/3] arm64: defconfig: Enable Interconnect " Rohit Agarwal
  2 siblings, 1 reply; 6+ messages in thread
From: Rohit Agarwal @ 2023-11-16  9:35 UTC (permalink / raw)
  To: catalin.marinas, will, quic_bjorande, geert+renesas,
	konrad.dybcio, arnd, krzysztof.kozlowski, neil.armstrong,
	dmitry.baryshkov, nfraprado, m.szyprowski, u-kumar1, peng.fan
  Cc: linux-arm-kernel, linux-kernel, linux-arm-msm, kernel,
	Rohit Agarwal

Enable Global Clock controller framework support for
Qualcomm's SDX75 SoC which is required to boot to console
on sdx75-idp platform.

Signed-off-by: Rohit Agarwal <quic_rohiagar@quicinc.com>
---
 arch/arm64/configs/defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index b60aa1f89343..d1be1efa8a23 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -1252,6 +1252,7 @@ CONFIG_SDM_GPUCC_845=y
 CONFIG_SDM_VIDEOCC_845=y
 CONFIG_SDM_DISPCC_845=y
 CONFIG_SDM_LPASSCC_845=m
+CONFIG_SDX_GCC_75=y
 CONFIG_SM_CAMCC_8250=m
 CONFIG_SM_DISPCC_6115=m
 CONFIG_SM_DISPCC_8250=y
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH v2 2/3] arm64: defconfig: Enable pinctrl for SDX75
  2023-11-16  9:35 [PATCH v2 0/3] Enable configs required to boot SDX75 Rohit Agarwal
  2023-11-16  9:35 ` [PATCH v2 1/3] arm64: defconfig: Enable GCC for SDX75 Rohit Agarwal
@ 2023-11-16  9:35 ` Rohit Agarwal
  2023-11-16  9:35 ` [PATCH v2 3/3] arm64: defconfig: Enable Interconnect " Rohit Agarwal
  2 siblings, 0 replies; 6+ messages in thread
From: Rohit Agarwal @ 2023-11-16  9:35 UTC (permalink / raw)
  To: catalin.marinas, will, quic_bjorande, geert+renesas,
	konrad.dybcio, arnd, krzysztof.kozlowski, neil.armstrong,
	dmitry.baryshkov, nfraprado, m.szyprowski, u-kumar1, peng.fan
  Cc: linux-arm-kernel, linux-kernel, linux-arm-msm, kernel,
	Rohit Agarwal

Enable pinctrl framework support for Qualcomm's
SDX75 SoC which is required to boot to console
on sdx75-idp board.

Signed-off-by: Rohit Agarwal <quic_rohiagar@quicinc.com>
---
 arch/arm64/configs/defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index d1be1efa8a23..eeb2ab3a7dec 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -599,6 +599,7 @@ CONFIG_PINCTRL_SC8280XP=y
 CONFIG_PINCTRL_SDM660=y
 CONFIG_PINCTRL_SDM670=y
 CONFIG_PINCTRL_SDM845=y
+CONFIG_PINCTRL_SDX75=y
 CONFIG_PINCTRL_SM6115=y
 CONFIG_PINCTRL_SM6115_LPASS_LPI=m
 CONFIG_PINCTRL_SM6125=y
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH v2 3/3] arm64: defconfig: Enable Interconnect for SDX75
  2023-11-16  9:35 [PATCH v2 0/3] Enable configs required to boot SDX75 Rohit Agarwal
  2023-11-16  9:35 ` [PATCH v2 1/3] arm64: defconfig: Enable GCC for SDX75 Rohit Agarwal
  2023-11-16  9:35 ` [PATCH v2 2/3] arm64: defconfig: Enable pinctrl " Rohit Agarwal
@ 2023-11-16  9:35 ` Rohit Agarwal
  2 siblings, 0 replies; 6+ messages in thread
From: Rohit Agarwal @ 2023-11-16  9:35 UTC (permalink / raw)
  To: catalin.marinas, will, quic_bjorande, geert+renesas,
	konrad.dybcio, arnd, krzysztof.kozlowski, neil.armstrong,
	dmitry.baryshkov, nfraprado, m.szyprowski, u-kumar1, peng.fan
  Cc: linux-arm-kernel, linux-kernel, linux-arm-msm, kernel,
	Rohit Agarwal

Enable the interconnect framework support for
Qualcomm's SDX75 SoC which is required to boot
to console on sdx75-idp board.

Signed-off-by: Rohit Agarwal <quic_rohiagar@quicinc.com>
---
 arch/arm64/configs/defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index eeb2ab3a7dec..4c0cd428d073 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -1521,6 +1521,7 @@ CONFIG_INTERCONNECT_QCOM_SC7280=y
 CONFIG_INTERCONNECT_QCOM_SC8180X=y
 CONFIG_INTERCONNECT_QCOM_SC8280XP=y
 CONFIG_INTERCONNECT_QCOM_SDM845=y
+CONFIG_INTERCONNECT_QCOM_SDX75=y
 CONFIG_INTERCONNECT_QCOM_SM8150=m
 CONFIG_INTERCONNECT_QCOM_SM8250=m
 CONFIG_INTERCONNECT_QCOM_SM8350=m
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH v2 1/3] arm64: defconfig: Enable GCC for SDX75
  2023-11-16  9:35 ` [PATCH v2 1/3] arm64: defconfig: Enable GCC for SDX75 Rohit Agarwal
@ 2023-11-16 11:16   ` Krzysztof Kozlowski
  2023-11-16 11:45     ` Rohit Agarwal
  0 siblings, 1 reply; 6+ messages in thread
From: Krzysztof Kozlowski @ 2023-11-16 11:16 UTC (permalink / raw)
  To: Rohit Agarwal, catalin.marinas, will, quic_bjorande,
	geert+renesas, konrad.dybcio, arnd, neil.armstrong,
	dmitry.baryshkov, nfraprado, m.szyprowski, u-kumar1, peng.fan
  Cc: linux-arm-kernel, linux-kernel, linux-arm-msm, kernel

On 16/11/2023 10:35, Rohit Agarwal wrote:
> Enable Global Clock controller framework support for
> Qualcomm's SDX75 SoC which is required to boot to console
> on sdx75-idp platform.

No, really, this is just one patch, not three. You do not enable a
platform with one-by-one config patches.

Best regards,
Krzysztof


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v2 1/3] arm64: defconfig: Enable GCC for SDX75
  2023-11-16 11:16   ` Krzysztof Kozlowski
@ 2023-11-16 11:45     ` Rohit Agarwal
  0 siblings, 0 replies; 6+ messages in thread
From: Rohit Agarwal @ 2023-11-16 11:45 UTC (permalink / raw)
  To: Krzysztof Kozlowski, catalin.marinas, will, quic_bjorande,
	geert+renesas, konrad.dybcio, arnd, neil.armstrong,
	dmitry.baryshkov, nfraprado, m.szyprowski, u-kumar1, peng.fan
  Cc: linux-arm-kernel, linux-kernel, linux-arm-msm, kernel


On 11/16/2023 4:46 PM, Krzysztof Kozlowski wrote:
> On 16/11/2023 10:35, Rohit Agarwal wrote:
>> Enable Global Clock controller framework support for
>> Qualcomm's SDX75 SoC which is required to boot to console
>> on sdx75-idp platform.
> No, really, this is just one patch, not three. You do not enable a
> platform with one-by-one config patches.
Ok, Sure. Will combine it into a single patch.

Thanks,
Rohit.
>
> Best regards,
> Krzysztof
>

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2023-11-16 11:46 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-16  9:35 [PATCH v2 0/3] Enable configs required to boot SDX75 Rohit Agarwal
2023-11-16  9:35 ` [PATCH v2 1/3] arm64: defconfig: Enable GCC for SDX75 Rohit Agarwal
2023-11-16 11:16   ` Krzysztof Kozlowski
2023-11-16 11:45     ` Rohit Agarwal
2023-11-16  9:35 ` [PATCH v2 2/3] arm64: defconfig: Enable pinctrl " Rohit Agarwal
2023-11-16  9:35 ` [PATCH v2 3/3] arm64: defconfig: Enable Interconnect " Rohit Agarwal

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox