* [PATCH 1/2] clk: qcom: Fix SM_VIDEOCC_6350 dependencies
2025-09-30 18:56 [PATCH 0/2] Kconfig fixes for QCOM clk drivers when targeting ARCH=arm Nathan Chancellor
@ 2025-09-30 18:56 ` Nathan Chancellor
2025-09-30 19:14 ` Dmitry Baryshkov
2025-10-01 7:03 ` Imran Shaik
2025-09-30 18:56 ` [PATCH 2/2] clk: qcom: Fix dependencies of QCS_{DISP,GPU,VIDEO}CC_615 Nathan Chancellor
2025-10-27 14:09 ` [PATCH 0/2] Kconfig fixes for QCOM clk drivers when targeting ARCH=arm Bjorn Andersson
2 siblings, 2 replies; 8+ messages in thread
From: Nathan Chancellor @ 2025-09-30 18:56 UTC (permalink / raw)
To: Bjorn Andersson, Michael Turquette, Stephen Boyd,
Dmitry Baryshkov, Taniya Das, Konrad Dybcio
Cc: linux-arm-msm, linux-clk, patches, stable, Nathan Chancellor
It is possible to select CONFIG_SM_GCC_6350 when targeting ARCH=arm,
causing a Kconfig warning when selecting CONFIG_SM_GCC_6350 without
its dependencies, CONFIG_ARM64 or CONFIG_COMPILE_TEST.
WARNING: unmet direct dependencies detected for SM_GCC_6350
Depends on [n]: COMMON_CLK [=y] && COMMON_CLK_QCOM [=m] && (ARM64 || COMPILE_TEST [=n])
Selected by [m]:
- SM_VIDEOCC_6350 [=m] && COMMON_CLK [=y] && COMMON_CLK_QCOM [=m]
Add the same dependency to clear up the warning.
Cc: stable@vger.kernel.org
Fixes: 720b1e8f2004 ("clk: qcom: Add video clock controller driver for SM6350")
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
---
drivers/clk/qcom/Kconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/clk/qcom/Kconfig b/drivers/clk/qcom/Kconfig
index 78a303842613..ec7d1a9b578e 100644
--- a/drivers/clk/qcom/Kconfig
+++ b/drivers/clk/qcom/Kconfig
@@ -1448,6 +1448,7 @@ config SA_VIDEOCC_8775P
config SM_VIDEOCC_6350
tristate "SM6350 Video Clock Controller"
+ depends on ARM64 || COMPILE_TEST
select SM_GCC_6350
select QCOM_GDSC
help
--
2.51.0
^ permalink raw reply related [flat|nested] 8+ messages in thread* Re: [PATCH 1/2] clk: qcom: Fix SM_VIDEOCC_6350 dependencies
2025-09-30 18:56 ` [PATCH 1/2] clk: qcom: Fix SM_VIDEOCC_6350 dependencies Nathan Chancellor
@ 2025-09-30 19:14 ` Dmitry Baryshkov
2025-10-01 7:03 ` Imran Shaik
1 sibling, 0 replies; 8+ messages in thread
From: Dmitry Baryshkov @ 2025-09-30 19:14 UTC (permalink / raw)
To: Nathan Chancellor
Cc: Bjorn Andersson, Michael Turquette, Stephen Boyd, Taniya Das,
Konrad Dybcio, linux-arm-msm, linux-clk, patches, stable
On Tue, Sep 30, 2025 at 11:56:08AM -0700, Nathan Chancellor wrote:
> It is possible to select CONFIG_SM_GCC_6350 when targeting ARCH=arm,
> causing a Kconfig warning when selecting CONFIG_SM_GCC_6350 without
> its dependencies, CONFIG_ARM64 or CONFIG_COMPILE_TEST.
>
> WARNING: unmet direct dependencies detected for SM_GCC_6350
> Depends on [n]: COMMON_CLK [=y] && COMMON_CLK_QCOM [=m] && (ARM64 || COMPILE_TEST [=n])
> Selected by [m]:
> - SM_VIDEOCC_6350 [=m] && COMMON_CLK [=y] && COMMON_CLK_QCOM [=m]
>
> Add the same dependency to clear up the warning.
>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
--
With best wishes
Dmitry
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/2] clk: qcom: Fix SM_VIDEOCC_6350 dependencies
2025-09-30 18:56 ` [PATCH 1/2] clk: qcom: Fix SM_VIDEOCC_6350 dependencies Nathan Chancellor
2025-09-30 19:14 ` Dmitry Baryshkov
@ 2025-10-01 7:03 ` Imran Shaik
1 sibling, 0 replies; 8+ messages in thread
From: Imran Shaik @ 2025-10-01 7:03 UTC (permalink / raw)
To: Nathan Chancellor, Bjorn Andersson, Michael Turquette,
Stephen Boyd, Dmitry Baryshkov, Taniya Das, Konrad Dybcio
Cc: linux-arm-msm, linux-clk, patches, stable
On 10/1/2025 12:26 AM, Nathan Chancellor wrote:
> It is possible to select CONFIG_SM_GCC_6350 when targeting ARCH=arm,
> causing a Kconfig warning when selecting CONFIG_SM_GCC_6350 without
> its dependencies, CONFIG_ARM64 or CONFIG_COMPILE_TEST.
>
> WARNING: unmet direct dependencies detected for SM_GCC_6350
> Depends on [n]: COMMON_CLK [=y] && COMMON_CLK_QCOM [=m] && (ARM64 || COMPILE_TEST [=n])
> Selected by [m]:
> - SM_VIDEOCC_6350 [=m] && COMMON_CLK [=y] && COMMON_CLK_QCOM [=m]
>
> Add the same dependency to clear up the warning.
>
> Cc: stable@vger.kernel.org
> Fixes: 720b1e8f2004 ("clk: qcom: Add video clock controller driver for SM6350")
> Signed-off-by: Nathan Chancellor <nathan@kernel.org>
> ---
> drivers/clk/qcom/Kconfig | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/clk/qcom/Kconfig b/drivers/clk/qcom/Kconfig
> index 78a303842613..ec7d1a9b578e 100644
> --- a/drivers/clk/qcom/Kconfig
> +++ b/drivers/clk/qcom/Kconfig
> @@ -1448,6 +1448,7 @@ config SA_VIDEOCC_8775P
>
> config SM_VIDEOCC_6350
> tristate "SM6350 Video Clock Controller"
> + depends on ARM64 || COMPILE_TEST
> select SM_GCC_6350
> select QCOM_GDSC
> help
>
Reviewed-by: Imran Shaik <imran.shaik@oss.qualcomm.com>
Thanks,
Imran
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH 2/2] clk: qcom: Fix dependencies of QCS_{DISP,GPU,VIDEO}CC_615
2025-09-30 18:56 [PATCH 0/2] Kconfig fixes for QCOM clk drivers when targeting ARCH=arm Nathan Chancellor
2025-09-30 18:56 ` [PATCH 1/2] clk: qcom: Fix SM_VIDEOCC_6350 dependencies Nathan Chancellor
@ 2025-09-30 18:56 ` Nathan Chancellor
2025-09-30 19:14 ` Dmitry Baryshkov
2025-10-01 7:04 ` Imran Shaik
2025-10-27 14:09 ` [PATCH 0/2] Kconfig fixes for QCOM clk drivers when targeting ARCH=arm Bjorn Andersson
2 siblings, 2 replies; 8+ messages in thread
From: Nathan Chancellor @ 2025-09-30 18:56 UTC (permalink / raw)
To: Bjorn Andersson, Michael Turquette, Stephen Boyd,
Dmitry Baryshkov, Taniya Das, Konrad Dybcio
Cc: linux-arm-msm, linux-clk, patches, stable, Nathan Chancellor
It is possible to select CONFIG_QCS_{DISP,GPU,VIDEO}CC_615 when
targeting ARCH=arm, causing a Kconfig warning when selecting
CONFIG_QCS_GCC_615 without its dependencies, CONFIG_ARM64 or
CONFIG_COMPILE_TEST.
WARNING: unmet direct dependencies detected for QCS_GCC_615
Depends on [n]: COMMON_CLK [=y] && COMMON_CLK_QCOM [=m] && (ARM64 || COMPILE_TEST [=n])
Selected by [m]:
- QCS_DISPCC_615 [=m] && COMMON_CLK [=y] && COMMON_CLK_QCOM [=m]
- QCS_GPUCC_615 [=m] && COMMON_CLK [=y] && COMMON_CLK_QCOM [=m]
- QCS_VIDEOCC_615 [=m] && COMMON_CLK [=y] && COMMON_CLK_QCOM [=m]
Add the same dependency to these configurations to clear up the
warnings.
Cc: stable@vger.kernel.org
Fixes: 9b47105f5434 ("clk: qcom: dispcc-qcs615: Add QCS615 display clock controller driver")
Fixes: f4b5b40805ab ("clk: qcom: gpucc-qcs615: Add QCS615 graphics clock controller driver")
Fixes: f6a8abe0cc16 ("clk: qcom: videocc-qcs615: Add QCS615 video clock controller driver")
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
---
drivers/clk/qcom/Kconfig | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/clk/qcom/Kconfig b/drivers/clk/qcom/Kconfig
index ec7d1a9b578e..6fef0bfc1773 100644
--- a/drivers/clk/qcom/Kconfig
+++ b/drivers/clk/qcom/Kconfig
@@ -531,6 +531,7 @@ config QCM_DISPCC_2290
config QCS_DISPCC_615
tristate "QCS615 Display Clock Controller"
+ depends on ARM64 || COMPILE_TEST
select QCS_GCC_615
help
Support for the display clock controller on Qualcomm Technologies, Inc
@@ -586,6 +587,7 @@ config QCS_GCC_615
config QCS_GPUCC_615
tristate "QCS615 Graphics clock controller"
+ depends on ARM64 || COMPILE_TEST
select QCS_GCC_615
help
Support for the graphics clock controller on QCS615 devices.
@@ -594,6 +596,7 @@ config QCS_GPUCC_615
config QCS_VIDEOCC_615
tristate "QCS615 Video Clock Controller"
+ depends on ARM64 || COMPILE_TEST
select QCS_GCC_615
help
Support for the video clock controller on QCS615 devices.
--
2.51.0
^ permalink raw reply related [flat|nested] 8+ messages in thread* Re: [PATCH 2/2] clk: qcom: Fix dependencies of QCS_{DISP,GPU,VIDEO}CC_615
2025-09-30 18:56 ` [PATCH 2/2] clk: qcom: Fix dependencies of QCS_{DISP,GPU,VIDEO}CC_615 Nathan Chancellor
@ 2025-09-30 19:14 ` Dmitry Baryshkov
2025-10-01 7:04 ` Imran Shaik
1 sibling, 0 replies; 8+ messages in thread
From: Dmitry Baryshkov @ 2025-09-30 19:14 UTC (permalink / raw)
To: Nathan Chancellor
Cc: Bjorn Andersson, Michael Turquette, Stephen Boyd, Taniya Das,
Konrad Dybcio, linux-arm-msm, linux-clk, patches, stable
On Tue, Sep 30, 2025 at 11:56:09AM -0700, Nathan Chancellor wrote:
> It is possible to select CONFIG_QCS_{DISP,GPU,VIDEO}CC_615 when
> targeting ARCH=arm, causing a Kconfig warning when selecting
> CONFIG_QCS_GCC_615 without its dependencies, CONFIG_ARM64 or
> CONFIG_COMPILE_TEST.
>
> WARNING: unmet direct dependencies detected for QCS_GCC_615
> Depends on [n]: COMMON_CLK [=y] && COMMON_CLK_QCOM [=m] && (ARM64 || COMPILE_TEST [=n])
> Selected by [m]:
> - QCS_DISPCC_615 [=m] && COMMON_CLK [=y] && COMMON_CLK_QCOM [=m]
> - QCS_GPUCC_615 [=m] && COMMON_CLK [=y] && COMMON_CLK_QCOM [=m]
> - QCS_VIDEOCC_615 [=m] && COMMON_CLK [=y] && COMMON_CLK_QCOM [=m]
>
> Add the same dependency to these configurations to clear up the
> warnings.
>
> Cc: stable@vger.kernel.org
> Fixes: 9b47105f5434 ("clk: qcom: dispcc-qcs615: Add QCS615 display clock controller driver")
> Fixes: f4b5b40805ab ("clk: qcom: gpucc-qcs615: Add QCS615 graphics clock controller driver")
> Fixes: f6a8abe0cc16 ("clk: qcom: videocc-qcs615: Add QCS615 video clock controller driver")
> Signed-off-by: Nathan Chancellor <nathan@kernel.org>
> ---
> drivers/clk/qcom/Kconfig | 3 +++
> 1 file changed, 3 insertions(+)
>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
--
With best wishes
Dmitry
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [PATCH 2/2] clk: qcom: Fix dependencies of QCS_{DISP,GPU,VIDEO}CC_615
2025-09-30 18:56 ` [PATCH 2/2] clk: qcom: Fix dependencies of QCS_{DISP,GPU,VIDEO}CC_615 Nathan Chancellor
2025-09-30 19:14 ` Dmitry Baryshkov
@ 2025-10-01 7:04 ` Imran Shaik
1 sibling, 0 replies; 8+ messages in thread
From: Imran Shaik @ 2025-10-01 7:04 UTC (permalink / raw)
To: Nathan Chancellor, Bjorn Andersson, Michael Turquette,
Stephen Boyd, Dmitry Baryshkov, Taniya Das, Konrad Dybcio
Cc: linux-arm-msm, linux-clk, patches, stable
On 10/1/2025 12:26 AM, Nathan Chancellor wrote:
> It is possible to select CONFIG_QCS_{DISP,GPU,VIDEO}CC_615 when
> targeting ARCH=arm, causing a Kconfig warning when selecting
> CONFIG_QCS_GCC_615 without its dependencies, CONFIG_ARM64 or
> CONFIG_COMPILE_TEST.
>
> WARNING: unmet direct dependencies detected for QCS_GCC_615
> Depends on [n]: COMMON_CLK [=y] && COMMON_CLK_QCOM [=m] && (ARM64 || COMPILE_TEST [=n])
> Selected by [m]:
> - QCS_DISPCC_615 [=m] && COMMON_CLK [=y] && COMMON_CLK_QCOM [=m]
> - QCS_GPUCC_615 [=m] && COMMON_CLK [=y] && COMMON_CLK_QCOM [=m]
> - QCS_VIDEOCC_615 [=m] && COMMON_CLK [=y] && COMMON_CLK_QCOM [=m]
>
> Add the same dependency to these configurations to clear up the
> warnings.
>
> Cc: stable@vger.kernel.org
> Fixes: 9b47105f5434 ("clk: qcom: dispcc-qcs615: Add QCS615 display clock controller driver")
> Fixes: f4b5b40805ab ("clk: qcom: gpucc-qcs615: Add QCS615 graphics clock controller driver")
> Fixes: f6a8abe0cc16 ("clk: qcom: videocc-qcs615: Add QCS615 video clock controller driver")
> Signed-off-by: Nathan Chancellor <nathan@kernel.org>
> ---
> drivers/clk/qcom/Kconfig | 3 +++
> 1 file changed, 3 insertions(+)
>
Reviewed-by: Imran Shaik <imran.shaik@oss.qualcomm.com>
Thanks,
Imran
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 0/2] Kconfig fixes for QCOM clk drivers when targeting ARCH=arm
2025-09-30 18:56 [PATCH 0/2] Kconfig fixes for QCOM clk drivers when targeting ARCH=arm Nathan Chancellor
2025-09-30 18:56 ` [PATCH 1/2] clk: qcom: Fix SM_VIDEOCC_6350 dependencies Nathan Chancellor
2025-09-30 18:56 ` [PATCH 2/2] clk: qcom: Fix dependencies of QCS_{DISP,GPU,VIDEO}CC_615 Nathan Chancellor
@ 2025-10-27 14:09 ` Bjorn Andersson
2 siblings, 0 replies; 8+ messages in thread
From: Bjorn Andersson @ 2025-10-27 14:09 UTC (permalink / raw)
To: Michael Turquette, Stephen Boyd, Dmitry Baryshkov, Taniya Das,
Konrad Dybcio, Nathan Chancellor
Cc: linux-arm-msm, linux-clk, patches, stable
On Tue, 30 Sep 2025 11:56:07 -0700, Nathan Chancellor wrote:
> This series resolves two new Kconfig warnings that I see in my test
> framework from an ARM configuration getting bumped to 6.17 and enabling
> these configurations in the process.
>
Applied, thanks!
[1/2] clk: qcom: Fix SM_VIDEOCC_6350 dependencies
commit: f0691a3f7558d33b5b4a900e8312613fbe4afb9d
[2/2] clk: qcom: Fix dependencies of QCS_{DISP,GPU,VIDEO}CC_615
commit: 7ec1ba01ae37897f0ecf6ab0c980378cb8a2f388
Best regards,
--
Bjorn Andersson <andersson@kernel.org>
^ permalink raw reply [flat|nested] 8+ messages in thread