All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] soc: samsung: pmu: drop EXYNOS_CENTRAL_SEQ_OPTION defines
@ 2021-05-25 18:47   ` Krzysztof Kozlowski
  0 siblings, 0 replies; 6+ messages in thread
From: Krzysztof Kozlowski @ 2021-05-25 18:47 UTC (permalink / raw)
  To: Krzysztof Kozlowski, linux-arm-kernel, linux-samsung-soc, linux-kernel
  Cc: Alim Akhtar, Alim Akhtar

The defines for Exynos5 CENTRAL_SEQ_OPTION (e.g.
EXYNOS5_USE_STANDBYWFI_ARM_CORE1) are not used.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>

---

Changes since v1:
1. Drop defines instead of fixing typo.
---
 include/linux/soc/samsung/exynos-regs-pmu.h | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/include/linux/soc/samsung/exynos-regs-pmu.h b/include/linux/soc/samsung/exynos-regs-pmu.h
index fc9250fb3133..aa840ed043e1 100644
--- a/include/linux/soc/samsung/exynos-regs-pmu.h
+++ b/include/linux/soc/samsung/exynos-regs-pmu.h
@@ -611,12 +611,6 @@
 #define EXYNOS5420_FSYS2_OPTION					0x4168
 #define EXYNOS5420_PSGEN_OPTION					0x4188
 
-/* For EXYNOS_CENTRAL_SEQ_OPTION */
-#define EXYNOS5_USE_STANDBYWFI_ARM_CORE0			BIT(16)
-#define EXYNOS5_USE_STANDBYWFI_ARM_CORE1			BUT(17)
-#define EXYNOS5_USE_STANDBYWFE_ARM_CORE0			BIT(24)
-#define EXYNOS5_USE_STANDBYWFE_ARM_CORE1			BIT(25)
-
 #define EXYNOS5420_ARM_USE_STANDBY_WFI0				BIT(4)
 #define EXYNOS5420_ARM_USE_STANDBY_WFI1				BIT(5)
 #define EXYNOS5420_ARM_USE_STANDBY_WFI2				BIT(6)
-- 
2.27.0


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

* [PATCH v2] soc: samsung: pmu: drop EXYNOS_CENTRAL_SEQ_OPTION defines
@ 2021-05-25 18:47   ` Krzysztof Kozlowski
  0 siblings, 0 replies; 6+ messages in thread
From: Krzysztof Kozlowski @ 2021-05-25 18:47 UTC (permalink / raw)
  To: Krzysztof Kozlowski, linux-arm-kernel, linux-samsung-soc, linux-kernel
  Cc: Alim Akhtar, Alim Akhtar

The defines for Exynos5 CENTRAL_SEQ_OPTION (e.g.
EXYNOS5_USE_STANDBYWFI_ARM_CORE1) are not used.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>

---

Changes since v1:
1. Drop defines instead of fixing typo.
---
 include/linux/soc/samsung/exynos-regs-pmu.h | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/include/linux/soc/samsung/exynos-regs-pmu.h b/include/linux/soc/samsung/exynos-regs-pmu.h
index fc9250fb3133..aa840ed043e1 100644
--- a/include/linux/soc/samsung/exynos-regs-pmu.h
+++ b/include/linux/soc/samsung/exynos-regs-pmu.h
@@ -611,12 +611,6 @@
 #define EXYNOS5420_FSYS2_OPTION					0x4168
 #define EXYNOS5420_PSGEN_OPTION					0x4188
 
-/* For EXYNOS_CENTRAL_SEQ_OPTION */
-#define EXYNOS5_USE_STANDBYWFI_ARM_CORE0			BIT(16)
-#define EXYNOS5_USE_STANDBYWFI_ARM_CORE1			BUT(17)
-#define EXYNOS5_USE_STANDBYWFE_ARM_CORE0			BIT(24)
-#define EXYNOS5_USE_STANDBYWFE_ARM_CORE1			BIT(25)
-
 #define EXYNOS5420_ARM_USE_STANDBY_WFI0				BIT(4)
 #define EXYNOS5420_ARM_USE_STANDBY_WFI1				BIT(5)
 #define EXYNOS5420_ARM_USE_STANDBY_WFI2				BIT(6)
-- 
2.27.0


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

* RE: [PATCH v2] soc: samsung: pmu: drop EXYNOS_CENTRAL_SEQ_OPTION defines
  2021-05-25 18:47   ` Krzysztof Kozlowski
@ 2021-05-26  5:12     ` Alim Akhtar
  -1 siblings, 0 replies; 6+ messages in thread
From: Alim Akhtar @ 2021-05-26  5:12 UTC (permalink / raw)
  To: 'Krzysztof Kozlowski',
	linux-arm-kernel, linux-samsung-soc, linux-kernel
  Cc: 'Alim Akhtar'

Hello Krzysztof

> -----Original Message-----
> From: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
> Sent: 26 May 2021 00:17
> To: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>; linux-arm-
> kernel@lists.infradead.org; linux-samsung-soc@vger.kernel.org; linux-
> kernel@vger.kernel.org
> Cc: Alim Akhtar <alim.akhtar@samsung.com>; Alim Akhtar
> <alim.akhtar@gmail.com>
> Subject: [PATCH v2] soc: samsung: pmu: drop
> EXYNOS_CENTRAL_SEQ_OPTION defines
> 
> The defines for Exynos5 CENTRAL_SEQ_OPTION (e.g.
> EXYNOS5_USE_STANDBYWFI_ARM_CORE1) are not used.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
> 
Reviewed-by: Alim Akhtar <alim.akhtar@samsung.com>
> ---
> 
> Changes since v1:
> 1. Drop defines instead of fixing typo.
> ---
>  include/linux/soc/samsung/exynos-regs-pmu.h | 6 ------
>  1 file changed, 6 deletions(-)
> 
> diff --git a/include/linux/soc/samsung/exynos-regs-pmu.h
> b/include/linux/soc/samsung/exynos-regs-pmu.h
> index fc9250fb3133..aa840ed043e1 100644
> --- a/include/linux/soc/samsung/exynos-regs-pmu.h
> +++ b/include/linux/soc/samsung/exynos-regs-pmu.h
> @@ -611,12 +611,6 @@
>  #define EXYNOS5420_FSYS2_OPTION
> 	0x4168
>  #define EXYNOS5420_PSGEN_OPTION
> 	0x4188
> 
> -/* For EXYNOS_CENTRAL_SEQ_OPTION */
> -#define EXYNOS5_USE_STANDBYWFI_ARM_CORE0
> 	BIT(16)
> -#define EXYNOS5_USE_STANDBYWFI_ARM_CORE1
> 	BUT(17)
> -#define EXYNOS5_USE_STANDBYWFE_ARM_CORE0
> 	BIT(24)
> -#define EXYNOS5_USE_STANDBYWFE_ARM_CORE1
> 	BIT(25)
> -
>  #define EXYNOS5420_ARM_USE_STANDBY_WFI0
> 	BIT(4)
>  #define EXYNOS5420_ARM_USE_STANDBY_WFI1
> 	BIT(5)
>  #define EXYNOS5420_ARM_USE_STANDBY_WFI2
> 	BIT(6)
> --
> 2.27.0



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

* RE: [PATCH v2] soc: samsung: pmu: drop EXYNOS_CENTRAL_SEQ_OPTION defines
@ 2021-05-26  5:12     ` Alim Akhtar
  0 siblings, 0 replies; 6+ messages in thread
From: Alim Akhtar @ 2021-05-26  5:12 UTC (permalink / raw)
  To: 'Krzysztof Kozlowski',
	linux-arm-kernel, linux-samsung-soc, linux-kernel
  Cc: 'Alim Akhtar'

Hello Krzysztof

> -----Original Message-----
> From: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
> Sent: 26 May 2021 00:17
> To: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>; linux-arm-
> kernel@lists.infradead.org; linux-samsung-soc@vger.kernel.org; linux-
> kernel@vger.kernel.org
> Cc: Alim Akhtar <alim.akhtar@samsung.com>; Alim Akhtar
> <alim.akhtar@gmail.com>
> Subject: [PATCH v2] soc: samsung: pmu: drop
> EXYNOS_CENTRAL_SEQ_OPTION defines
> 
> The defines for Exynos5 CENTRAL_SEQ_OPTION (e.g.
> EXYNOS5_USE_STANDBYWFI_ARM_CORE1) are not used.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
> 
Reviewed-by: Alim Akhtar <alim.akhtar@samsung.com>
> ---
> 
> Changes since v1:
> 1. Drop defines instead of fixing typo.
> ---
>  include/linux/soc/samsung/exynos-regs-pmu.h | 6 ------
>  1 file changed, 6 deletions(-)
> 
> diff --git a/include/linux/soc/samsung/exynos-regs-pmu.h
> b/include/linux/soc/samsung/exynos-regs-pmu.h
> index fc9250fb3133..aa840ed043e1 100644
> --- a/include/linux/soc/samsung/exynos-regs-pmu.h
> +++ b/include/linux/soc/samsung/exynos-regs-pmu.h
> @@ -611,12 +611,6 @@
>  #define EXYNOS5420_FSYS2_OPTION
> 	0x4168
>  #define EXYNOS5420_PSGEN_OPTION
> 	0x4188
> 
> -/* For EXYNOS_CENTRAL_SEQ_OPTION */
> -#define EXYNOS5_USE_STANDBYWFI_ARM_CORE0
> 	BIT(16)
> -#define EXYNOS5_USE_STANDBYWFI_ARM_CORE1
> 	BUT(17)
> -#define EXYNOS5_USE_STANDBYWFE_ARM_CORE0
> 	BIT(24)
> -#define EXYNOS5_USE_STANDBYWFE_ARM_CORE1
> 	BIT(25)
> -
>  #define EXYNOS5420_ARM_USE_STANDBY_WFI0
> 	BIT(4)
>  #define EXYNOS5420_ARM_USE_STANDBY_WFI1
> 	BIT(5)
>  #define EXYNOS5420_ARM_USE_STANDBY_WFI2
> 	BIT(6)
> --
> 2.27.0



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

* Re: [PATCH v2] soc: samsung: pmu: drop EXYNOS_CENTRAL_SEQ_OPTION defines
  2021-05-25 18:47   ` Krzysztof Kozlowski
@ 2021-05-27 15:58     ` Krzysztof Kozlowski
  -1 siblings, 0 replies; 6+ messages in thread
From: Krzysztof Kozlowski @ 2021-05-27 15:58 UTC (permalink / raw)
  To: linux-samsung-soc, linux-kernel, linux-arm-kernel, Krzysztof Kozlowski
  Cc: Alim Akhtar, Alim Akhtar

On Tue, 25 May 2021 14:47:16 -0400, Krzysztof Kozlowski wrote:
> The defines for Exynos5 CENTRAL_SEQ_OPTION (e.g.
> EXYNOS5_USE_STANDBYWFI_ARM_CORE1) are not used.

Applied, thanks!

[1/1] soc: samsung: pmu: drop EXYNOS_CENTRAL_SEQ_OPTION defines
      commit: 16b79a1e083371a38f72872345866e81abb7ca18

Best regards,
-- 
Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>

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

* Re: [PATCH v2] soc: samsung: pmu: drop EXYNOS_CENTRAL_SEQ_OPTION defines
@ 2021-05-27 15:58     ` Krzysztof Kozlowski
  0 siblings, 0 replies; 6+ messages in thread
From: Krzysztof Kozlowski @ 2021-05-27 15:58 UTC (permalink / raw)
  To: linux-samsung-soc, linux-kernel, linux-arm-kernel, Krzysztof Kozlowski
  Cc: Alim Akhtar, Alim Akhtar

On Tue, 25 May 2021 14:47:16 -0400, Krzysztof Kozlowski wrote:
> The defines for Exynos5 CENTRAL_SEQ_OPTION (e.g.
> EXYNOS5_USE_STANDBYWFI_ARM_CORE1) are not used.

Applied, thanks!

[1/1] soc: samsung: pmu: drop EXYNOS_CENTRAL_SEQ_OPTION defines
      commit: 16b79a1e083371a38f72872345866e81abb7ca18

Best regards,
-- 
Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>

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

end of thread, other threads:[~2021-05-27 17:30 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <CGME20210525184731epcas5p492729224fc5477481138e03df3da6cfe@epcas5p4.samsung.com>
2021-05-25 18:47 ` [PATCH v2] soc: samsung: pmu: drop EXYNOS_CENTRAL_SEQ_OPTION defines Krzysztof Kozlowski
2021-05-25 18:47   ` Krzysztof Kozlowski
2021-05-26  5:12   ` Alim Akhtar
2021-05-26  5:12     ` Alim Akhtar
2021-05-27 15:58   ` Krzysztof Kozlowski
2021-05-27 15:58     ` Krzysztof Kozlowski

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.