All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/2] Update ZYNQMP clock configuration
@ 2021-03-22  6:17 ` Punit Agrawal
  0 siblings, 0 replies; 16+ messages in thread
From: Punit Agrawal @ 2021-03-22  6:17 UTC (permalink / raw)
  To: michal.simek; +Cc: Punit Agrawal, sboyd, linux-clk, linux-arm-kernel

Hi,

Here are a couple of patches defaulting the ZYNQMP clock configuration
if it's dependencies are available. The clock driver is needed for
peripherals such as micro sd card required for booting.

The second posting adds a patch to drop the redundant dependency on
ARCH_ZYNQMP requested by Michal.

Thanks,
Punit

Previous posting -

[0] https://lore.kernel.org/linux-arm-kernel/20210316090540.973014-1-punit1.agrawal@toshiba.co.jp/

Punit Agrawal (2):
  clk: zynqmp: Enable the driver if ZYNQMP_FIRMWARE is selected
  clk: zynqmp: Drop dependency on ARCH_ZYNQMP

 drivers/clk/zynqmp/Kconfig | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

-- 
2.30.1


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

* [PATCH v2 0/2] Update ZYNQMP clock configuration
@ 2021-03-22  6:17 ` Punit Agrawal
  0 siblings, 0 replies; 16+ messages in thread
From: Punit Agrawal @ 2021-03-22  6:17 UTC (permalink / raw)
  To: michal.simek; +Cc: Punit Agrawal, sboyd, linux-clk, linux-arm-kernel

Hi,

Here are a couple of patches defaulting the ZYNQMP clock configuration
if it's dependencies are available. The clock driver is needed for
peripherals such as micro sd card required for booting.

The second posting adds a patch to drop the redundant dependency on
ARCH_ZYNQMP requested by Michal.

Thanks,
Punit

Previous posting -

[0] https://lore.kernel.org/linux-arm-kernel/20210316090540.973014-1-punit1.agrawal@toshiba.co.jp/

Punit Agrawal (2):
  clk: zynqmp: Enable the driver if ZYNQMP_FIRMWARE is selected
  clk: zynqmp: Drop dependency on ARCH_ZYNQMP

 drivers/clk/zynqmp/Kconfig | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

-- 
2.30.1


_______________________________________________
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] 16+ messages in thread

* [PATCH v2 1/2] clk: zynqmp: Enable the driver if ZYNQMP_FIRMWARE is selected
  2021-03-22  6:17 ` Punit Agrawal
@ 2021-03-22  6:17   ` Punit Agrawal
  -1 siblings, 0 replies; 16+ messages in thread
From: Punit Agrawal @ 2021-03-22  6:17 UTC (permalink / raw)
  To: michal.simek; +Cc: Punit Agrawal, sboyd, linux-clk, linux-arm-kernel

When booting the kernel on zynqmp based platforms such as Ultra96v2,
peripheral drivers such as that for the sdcard depend on the presence
of clocks.

Enable the clock driver if it's dependencies are compiled to avoid
building an unbootable kernel.

Signed-off-by: Punit Agrawal <punit1.agrawal@toshiba.co.jp>
---
 drivers/clk/zynqmp/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/clk/zynqmp/Kconfig b/drivers/clk/zynqmp/Kconfig
index 17086059be8b..14e4f5c55525 100644
--- a/drivers/clk/zynqmp/Kconfig
+++ b/drivers/clk/zynqmp/Kconfig
@@ -4,6 +4,7 @@ config COMMON_CLK_ZYNQMP
 	bool "Support for Xilinx ZynqMP Ultrascale+ clock controllers"
 	depends on ARCH_ZYNQMP || COMPILE_TEST
 	depends on ZYNQMP_FIRMWARE
+	default ZYNQMP_FIRMWARE
 	help
 	  Support for the Zynqmp Ultrascale clock controller.
 	  It has a dependency on the PMU firmware.
-- 
2.30.1


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

* [PATCH v2 1/2] clk: zynqmp: Enable the driver if ZYNQMP_FIRMWARE is selected
@ 2021-03-22  6:17   ` Punit Agrawal
  0 siblings, 0 replies; 16+ messages in thread
From: Punit Agrawal @ 2021-03-22  6:17 UTC (permalink / raw)
  To: michal.simek; +Cc: Punit Agrawal, sboyd, linux-clk, linux-arm-kernel

When booting the kernel on zynqmp based platforms such as Ultra96v2,
peripheral drivers such as that for the sdcard depend on the presence
of clocks.

Enable the clock driver if it's dependencies are compiled to avoid
building an unbootable kernel.

Signed-off-by: Punit Agrawal <punit1.agrawal@toshiba.co.jp>
---
 drivers/clk/zynqmp/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/clk/zynqmp/Kconfig b/drivers/clk/zynqmp/Kconfig
index 17086059be8b..14e4f5c55525 100644
--- a/drivers/clk/zynqmp/Kconfig
+++ b/drivers/clk/zynqmp/Kconfig
@@ -4,6 +4,7 @@ config COMMON_CLK_ZYNQMP
 	bool "Support for Xilinx ZynqMP Ultrascale+ clock controllers"
 	depends on ARCH_ZYNQMP || COMPILE_TEST
 	depends on ZYNQMP_FIRMWARE
+	default ZYNQMP_FIRMWARE
 	help
 	  Support for the Zynqmp Ultrascale clock controller.
 	  It has a dependency on the PMU firmware.
-- 
2.30.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] 16+ messages in thread

* [PATCH v2 2/2] clk: zynqmp: Drop dependency on ARCH_ZYNQMP
  2021-03-22  6:17 ` Punit Agrawal
@ 2021-03-22  6:17   ` Punit Agrawal
  -1 siblings, 0 replies; 16+ messages in thread
From: Punit Agrawal @ 2021-03-22  6:17 UTC (permalink / raw)
  To: michal.simek; +Cc: Punit Agrawal, sboyd, linux-clk, linux-arm-kernel

The clock driver depends on ZYNQMP_FIRMWARE which in turn depends on
ARCH_ZYNQMP. Simplify the Kconfig by dropping the redundant dependency
on ARCH_ZYNQMP as it'll be applied transitively via ZYNQMP_FIRMWARE.

Signed-off-by: Punit Agrawal <punit1.agrawal@toshiba.co.jp>
---
 drivers/clk/zynqmp/Kconfig | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/clk/zynqmp/Kconfig b/drivers/clk/zynqmp/Kconfig
index 14e4f5c55525..00df6be25c5d 100644
--- a/drivers/clk/zynqmp/Kconfig
+++ b/drivers/clk/zynqmp/Kconfig
@@ -2,8 +2,7 @@
 
 config COMMON_CLK_ZYNQMP
 	bool "Support for Xilinx ZynqMP Ultrascale+ clock controllers"
-	depends on ARCH_ZYNQMP || COMPILE_TEST
-	depends on ZYNQMP_FIRMWARE
+	depends on ZYNQMP_FIRMWARE || COMPILE_TEST
 	default ZYNQMP_FIRMWARE
 	help
 	  Support for the Zynqmp Ultrascale clock controller.
-- 
2.30.1


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

* [PATCH v2 2/2] clk: zynqmp: Drop dependency on ARCH_ZYNQMP
@ 2021-03-22  6:17   ` Punit Agrawal
  0 siblings, 0 replies; 16+ messages in thread
From: Punit Agrawal @ 2021-03-22  6:17 UTC (permalink / raw)
  To: michal.simek; +Cc: Punit Agrawal, sboyd, linux-clk, linux-arm-kernel

The clock driver depends on ZYNQMP_FIRMWARE which in turn depends on
ARCH_ZYNQMP. Simplify the Kconfig by dropping the redundant dependency
on ARCH_ZYNQMP as it'll be applied transitively via ZYNQMP_FIRMWARE.

Signed-off-by: Punit Agrawal <punit1.agrawal@toshiba.co.jp>
---
 drivers/clk/zynqmp/Kconfig | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/clk/zynqmp/Kconfig b/drivers/clk/zynqmp/Kconfig
index 14e4f5c55525..00df6be25c5d 100644
--- a/drivers/clk/zynqmp/Kconfig
+++ b/drivers/clk/zynqmp/Kconfig
@@ -2,8 +2,7 @@
 
 config COMMON_CLK_ZYNQMP
 	bool "Support for Xilinx ZynqMP Ultrascale+ clock controllers"
-	depends on ARCH_ZYNQMP || COMPILE_TEST
-	depends on ZYNQMP_FIRMWARE
+	depends on ZYNQMP_FIRMWARE || COMPILE_TEST
 	default ZYNQMP_FIRMWARE
 	help
 	  Support for the Zynqmp Ultrascale clock controller.
-- 
2.30.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] 16+ messages in thread

* Re: [PATCH v2 2/2] clk: zynqmp: Drop dependency on ARCH_ZYNQMP
  2021-03-22  6:17   ` Punit Agrawal
@ 2021-03-22  8:16     ` Michal Simek
  -1 siblings, 0 replies; 16+ messages in thread
From: Michal Simek @ 2021-03-22  8:16 UTC (permalink / raw)
  To: Punit Agrawal, michal.simek; +Cc: sboyd, linux-clk, linux-arm-kernel



On 3/22/21 7:17 AM, Punit Agrawal wrote:
> The clock driver depends on ZYNQMP_FIRMWARE which in turn depends on
> ARCH_ZYNQMP. Simplify the Kconfig by dropping the redundant dependency
> on ARCH_ZYNQMP as it'll be applied transitively via ZYNQMP_FIRMWARE.
> 
> Signed-off-by: Punit Agrawal <punit1.agrawal@toshiba.co.jp>
> ---
>  drivers/clk/zynqmp/Kconfig | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/drivers/clk/zynqmp/Kconfig b/drivers/clk/zynqmp/Kconfig
> index 14e4f5c55525..00df6be25c5d 100644
> --- a/drivers/clk/zynqmp/Kconfig
> +++ b/drivers/clk/zynqmp/Kconfig
> @@ -2,8 +2,7 @@
>  
>  config COMMON_CLK_ZYNQMP
>  	bool "Support for Xilinx ZynqMP Ultrascale+ clock controllers"
> -	depends on ARCH_ZYNQMP || COMPILE_TEST
> -	depends on ZYNQMP_FIRMWARE
> +	depends on ZYNQMP_FIRMWARE || COMPILE_TEST
>  	default ZYNQMP_FIRMWARE
>  	help
>  	  Support for the Zynqmp Ultrascale clock controller.
> 

Reviewed-by: Michal Simek <michal.simek@xilinx.com>

Thanks,
Michal

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

* Re: [PATCH v2 2/2] clk: zynqmp: Drop dependency on ARCH_ZYNQMP
@ 2021-03-22  8:16     ` Michal Simek
  0 siblings, 0 replies; 16+ messages in thread
From: Michal Simek @ 2021-03-22  8:16 UTC (permalink / raw)
  To: Punit Agrawal, michal.simek; +Cc: sboyd, linux-clk, linux-arm-kernel



On 3/22/21 7:17 AM, Punit Agrawal wrote:
> The clock driver depends on ZYNQMP_FIRMWARE which in turn depends on
> ARCH_ZYNQMP. Simplify the Kconfig by dropping the redundant dependency
> on ARCH_ZYNQMP as it'll be applied transitively via ZYNQMP_FIRMWARE.
> 
> Signed-off-by: Punit Agrawal <punit1.agrawal@toshiba.co.jp>
> ---
>  drivers/clk/zynqmp/Kconfig | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/drivers/clk/zynqmp/Kconfig b/drivers/clk/zynqmp/Kconfig
> index 14e4f5c55525..00df6be25c5d 100644
> --- a/drivers/clk/zynqmp/Kconfig
> +++ b/drivers/clk/zynqmp/Kconfig
> @@ -2,8 +2,7 @@
>  
>  config COMMON_CLK_ZYNQMP
>  	bool "Support for Xilinx ZynqMP Ultrascale+ clock controllers"
> -	depends on ARCH_ZYNQMP || COMPILE_TEST
> -	depends on ZYNQMP_FIRMWARE
> +	depends on ZYNQMP_FIRMWARE || COMPILE_TEST
>  	default ZYNQMP_FIRMWARE
>  	help
>  	  Support for the Zynqmp Ultrascale clock controller.
> 

Reviewed-by: Michal Simek <michal.simek@xilinx.com>

Thanks,
Michal

_______________________________________________
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] 16+ messages in thread

* Re: [PATCH v2 1/2] clk: zynqmp: Enable the driver if ZYNQMP_FIRMWARE is selected
  2021-03-22  6:17   ` Punit Agrawal
@ 2021-03-22  8:17     ` Michal Simek
  -1 siblings, 0 replies; 16+ messages in thread
From: Michal Simek @ 2021-03-22  8:17 UTC (permalink / raw)
  To: Punit Agrawal, michal.simek; +Cc: sboyd, linux-clk, linux-arm-kernel



On 3/22/21 7:17 AM, Punit Agrawal wrote:
> When booting the kernel on zynqmp based platforms such as Ultra96v2,
> peripheral drivers such as that for the sdcard depend on the presence
> of clocks.
> 
> Enable the clock driver if it's dependencies are compiled to avoid
> building an unbootable kernel.
> 
> Signed-off-by: Punit Agrawal <punit1.agrawal@toshiba.co.jp>
> ---
>  drivers/clk/zynqmp/Kconfig | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/clk/zynqmp/Kconfig b/drivers/clk/zynqmp/Kconfig
> index 17086059be8b..14e4f5c55525 100644
> --- a/drivers/clk/zynqmp/Kconfig
> +++ b/drivers/clk/zynqmp/Kconfig
> @@ -4,6 +4,7 @@ config COMMON_CLK_ZYNQMP
>  	bool "Support for Xilinx ZynqMP Ultrascale+ clock controllers"
>  	depends on ARCH_ZYNQMP || COMPILE_TEST
>  	depends on ZYNQMP_FIRMWARE
> +	default ZYNQMP_FIRMWARE
>  	help
>  	  Support for the Zynqmp Ultrascale clock controller.
>  	  It has a dependency on the PMU firmware.
> 

Acked-by: Michal Simek <michal.simek@xilinx.com>

Thanks,
Michal

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

* Re: [PATCH v2 1/2] clk: zynqmp: Enable the driver if ZYNQMP_FIRMWARE is selected
@ 2021-03-22  8:17     ` Michal Simek
  0 siblings, 0 replies; 16+ messages in thread
From: Michal Simek @ 2021-03-22  8:17 UTC (permalink / raw)
  To: Punit Agrawal, michal.simek; +Cc: sboyd, linux-clk, linux-arm-kernel



On 3/22/21 7:17 AM, Punit Agrawal wrote:
> When booting the kernel on zynqmp based platforms such as Ultra96v2,
> peripheral drivers such as that for the sdcard depend on the presence
> of clocks.
> 
> Enable the clock driver if it's dependencies are compiled to avoid
> building an unbootable kernel.
> 
> Signed-off-by: Punit Agrawal <punit1.agrawal@toshiba.co.jp>
> ---
>  drivers/clk/zynqmp/Kconfig | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/clk/zynqmp/Kconfig b/drivers/clk/zynqmp/Kconfig
> index 17086059be8b..14e4f5c55525 100644
> --- a/drivers/clk/zynqmp/Kconfig
> +++ b/drivers/clk/zynqmp/Kconfig
> @@ -4,6 +4,7 @@ config COMMON_CLK_ZYNQMP
>  	bool "Support for Xilinx ZynqMP Ultrascale+ clock controllers"
>  	depends on ARCH_ZYNQMP || COMPILE_TEST
>  	depends on ZYNQMP_FIRMWARE
> +	default ZYNQMP_FIRMWARE
>  	help
>  	  Support for the Zynqmp Ultrascale clock controller.
>  	  It has a dependency on the PMU firmware.
> 

Acked-by: Michal Simek <michal.simek@xilinx.com>

Thanks,
Michal

_______________________________________________
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] 16+ messages in thread

* Re: [PATCH v2 0/2] Update ZYNQMP clock configuration
  2021-03-22  6:17 ` Punit Agrawal
@ 2021-04-07 10:13   ` Michal Simek
  -1 siblings, 0 replies; 16+ messages in thread
From: Michal Simek @ 2021-04-07 10:13 UTC (permalink / raw)
  To: Punit Agrawal, michal.simek, Stephen Boyd; +Cc: linux-clk, linux-arm-kernel

Hi Stephen,

On 3/22/21 7:17 AM, Punit Agrawal wrote:
> Hi,
> 
> Here are a couple of patches defaulting the ZYNQMP clock configuration
> if it's dependencies are available. The clock driver is needed for
> peripherals such as micro sd card required for booting.
> 
> The second posting adds a patch to drop the redundant dependency on
> ARCH_ZYNQMP requested by Michal.
> 
> Thanks,
> Punit
> 
> Previous posting -
> 
> [0] https://lore.kernel.org/linux-arm-kernel/20210316090540.973014-1-punit1.agrawal@toshiba.co.jp/
> 
> Punit Agrawal (2):
>   clk: zynqmp: Enable the driver if ZYNQMP_FIRMWARE is selected
>   clk: zynqmp: Drop dependency on ARCH_ZYNQMP
> 
>  drivers/clk/zynqmp/Kconfig | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 

Can you please take this series? Or do you want me to take it via my tree?

Thanks,
Michal

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

* Re: [PATCH v2 0/2] Update ZYNQMP clock configuration
@ 2021-04-07 10:13   ` Michal Simek
  0 siblings, 0 replies; 16+ messages in thread
From: Michal Simek @ 2021-04-07 10:13 UTC (permalink / raw)
  To: Punit Agrawal, michal.simek, Stephen Boyd; +Cc: linux-clk, linux-arm-kernel

Hi Stephen,

On 3/22/21 7:17 AM, Punit Agrawal wrote:
> Hi,
> 
> Here are a couple of patches defaulting the ZYNQMP clock configuration
> if it's dependencies are available. The clock driver is needed for
> peripherals such as micro sd card required for booting.
> 
> The second posting adds a patch to drop the redundant dependency on
> ARCH_ZYNQMP requested by Michal.
> 
> Thanks,
> Punit
> 
> Previous posting -
> 
> [0] https://lore.kernel.org/linux-arm-kernel/20210316090540.973014-1-punit1.agrawal@toshiba.co.jp/
> 
> Punit Agrawal (2):
>   clk: zynqmp: Enable the driver if ZYNQMP_FIRMWARE is selected
>   clk: zynqmp: Drop dependency on ARCH_ZYNQMP
> 
>  drivers/clk/zynqmp/Kconfig | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 

Can you please take this series? Or do you want me to take it via my tree?

Thanks,
Michal

_______________________________________________
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] 16+ messages in thread

* Re: [PATCH v2 1/2] clk: zynqmp: Enable the driver if ZYNQMP_FIRMWARE is selected
  2021-03-22  6:17   ` Punit Agrawal
@ 2021-04-08  0:26     ` Stephen Boyd
  -1 siblings, 0 replies; 16+ messages in thread
From: Stephen Boyd @ 2021-04-08  0:26 UTC (permalink / raw)
  To: Punit Agrawal, michal.simek; +Cc: Punit Agrawal, linux-clk, linux-arm-kernel

Quoting Punit Agrawal (2021-03-21 23:17:53)
> When booting the kernel on zynqmp based platforms such as Ultra96v2,
> peripheral drivers such as that for the sdcard depend on the presence
> of clocks.
> 
> Enable the clock driver if it's dependencies are compiled to avoid
> building an unbootable kernel.
> 
> Signed-off-by: Punit Agrawal <punit1.agrawal@toshiba.co.jp>
> ---

Applied to clk-next

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

* Re: [PATCH v2 1/2] clk: zynqmp: Enable the driver if ZYNQMP_FIRMWARE is selected
@ 2021-04-08  0:26     ` Stephen Boyd
  0 siblings, 0 replies; 16+ messages in thread
From: Stephen Boyd @ 2021-04-08  0:26 UTC (permalink / raw)
  To: Punit Agrawal, michal.simek; +Cc: Punit Agrawal, linux-clk, linux-arm-kernel

Quoting Punit Agrawal (2021-03-21 23:17:53)
> When booting the kernel on zynqmp based platforms such as Ultra96v2,
> peripheral drivers such as that for the sdcard depend on the presence
> of clocks.
> 
> Enable the clock driver if it's dependencies are compiled to avoid
> building an unbootable kernel.
> 
> Signed-off-by: Punit Agrawal <punit1.agrawal@toshiba.co.jp>
> ---

Applied to clk-next

_______________________________________________
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] 16+ messages in thread

* Re: [PATCH v2 2/2] clk: zynqmp: Drop dependency on ARCH_ZYNQMP
  2021-03-22  6:17   ` Punit Agrawal
@ 2021-04-08  0:26     ` Stephen Boyd
  -1 siblings, 0 replies; 16+ messages in thread
From: Stephen Boyd @ 2021-04-08  0:26 UTC (permalink / raw)
  To: Punit Agrawal, michal.simek; +Cc: Punit Agrawal, linux-clk, linux-arm-kernel

Quoting Punit Agrawal (2021-03-21 23:17:54)
> The clock driver depends on ZYNQMP_FIRMWARE which in turn depends on
> ARCH_ZYNQMP. Simplify the Kconfig by dropping the redundant dependency
> on ARCH_ZYNQMP as it'll be applied transitively via ZYNQMP_FIRMWARE.
> 
> Signed-off-by: Punit Agrawal <punit1.agrawal@toshiba.co.jp>
> ---

Applied to clk-next

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

* Re: [PATCH v2 2/2] clk: zynqmp: Drop dependency on ARCH_ZYNQMP
@ 2021-04-08  0:26     ` Stephen Boyd
  0 siblings, 0 replies; 16+ messages in thread
From: Stephen Boyd @ 2021-04-08  0:26 UTC (permalink / raw)
  To: Punit Agrawal, michal.simek; +Cc: Punit Agrawal, linux-clk, linux-arm-kernel

Quoting Punit Agrawal (2021-03-21 23:17:54)
> The clock driver depends on ZYNQMP_FIRMWARE which in turn depends on
> ARCH_ZYNQMP. Simplify the Kconfig by dropping the redundant dependency
> on ARCH_ZYNQMP as it'll be applied transitively via ZYNQMP_FIRMWARE.
> 
> Signed-off-by: Punit Agrawal <punit1.agrawal@toshiba.co.jp>
> ---

Applied to clk-next

_______________________________________________
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] 16+ messages in thread

end of thread, other threads:[~2021-04-08  0:28 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-22  6:17 [PATCH v2 0/2] Update ZYNQMP clock configuration Punit Agrawal
2021-03-22  6:17 ` Punit Agrawal
2021-03-22  6:17 ` [PATCH v2 1/2] clk: zynqmp: Enable the driver if ZYNQMP_FIRMWARE is selected Punit Agrawal
2021-03-22  6:17   ` Punit Agrawal
2021-03-22  8:17   ` Michal Simek
2021-03-22  8:17     ` Michal Simek
2021-04-08  0:26   ` Stephen Boyd
2021-04-08  0:26     ` Stephen Boyd
2021-03-22  6:17 ` [PATCH v2 2/2] clk: zynqmp: Drop dependency on ARCH_ZYNQMP Punit Agrawal
2021-03-22  6:17   ` Punit Agrawal
2021-03-22  8:16   ` Michal Simek
2021-03-22  8:16     ` Michal Simek
2021-04-08  0:26   ` Stephen Boyd
2021-04-08  0:26     ` Stephen Boyd
2021-04-07 10:13 ` [PATCH v2 0/2] Update ZYNQMP clock configuration Michal Simek
2021-04-07 10:13   ` Michal Simek

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.