linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/5] arm: defconfig: drop unused POWER_AVS option
@ 2021-09-08 11:37 Ross Burton
  2021-09-08 11:37 ` [PATCH 2/5] arm64: " Ross Burton
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Ross Burton @ 2021-09-08 11:37 UTC (permalink / raw)
  To: linux-arm-kernel; +Cc: catalin.marinas, will

Commit 785b5bb41b0a ("PM: AVS: Drop the avs directory and the
corresponding Kconfig") moved AVS code to SOC-specific folders, and
removed corresponding Kconfig from drivers/power, leaving original
POWER_AVS config option enabled in some defconfigs.

Remove the options, which have no references in the tree anymore.

Fixes: 785b5bb41b0a ("PM: AVS: Drop the avs directory and the corresponding Kconfig")

Signed-off-by: Ross Burton <ross.burton@arm.com>
---
 arch/arm/configs/multi_v7_defconfig | 1 -
 1 file changed, 1 deletion(-)

diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
index d9abaae118dd..07932f3dde70 100644
--- a/arch/arm/configs/multi_v7_defconfig
+++ b/arch/arm/configs/multi_v7_defconfig
@@ -480,7 +480,6 @@ CONFIG_GPIO_TPS6586X=y
 CONFIG_GPIO_TPS65910=y
 CONFIG_GPIO_TWL4030=y
 CONFIG_GPIO_MXC=y
-CONFIG_POWER_AVS=y
 CONFIG_ROCKCHIP_IODOMAIN=y
 CONFIG_POWER_RESET_AS3722=y
 CONFIG_POWER_RESET_GPIO=y
-- 
2.25.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] 6+ messages in thread

* [PATCH 2/5] arm64: defconfig: drop unused POWER_AVS option
  2021-09-08 11:37 [PATCH 1/5] arm: defconfig: drop unused POWER_AVS option Ross Burton
@ 2021-09-08 11:37 ` Ross Burton
  2021-09-08 11:37 ` [PATCH 3/5] arm64: defconfig: set CONFIG_USB_CONN_GPIO=y Ross Burton
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Ross Burton @ 2021-09-08 11:37 UTC (permalink / raw)
  To: linux-arm-kernel; +Cc: catalin.marinas, will

Commit 785b5bb41b0a ("PM: AVS: Drop the avs directory and the
corresponding Kconfig") moved AVS code to SOC-specific folders, and
removed corresponding Kconfig from drivers/power, leaving original
POWER_AVS config option enabled in some defconfigs.

Remove the options, which have no references in the tree anymore.

Fixes: 785b5bb41b0a ("PM: AVS: Drop the avs directory and the corresponding Kconfig")

Signed-off-by: Ross Burton <ross.burton@arm.com>
---
 arch/arm64/configs/defconfig | 1 -
 1 file changed, 1 deletion(-)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index 9907a431db0d..f50751b6eaec 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -538,7 +538,6 @@ CONFIG_GPIO_PCA953X_IRQ=y
 CONFIG_GPIO_BD9571MWV=m
 CONFIG_GPIO_MAX77620=y
 CONFIG_GPIO_SL28CPLD=m
-CONFIG_POWER_AVS=y
 CONFIG_QCOM_CPR=y
 CONFIG_ROCKCHIP_IODOMAIN=y
 CONFIG_POWER_RESET_MSM=y
-- 
2.25.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] 6+ messages in thread

* [PATCH 3/5] arm64: defconfig: set CONFIG_USB_CONN_GPIO=y
  2021-09-08 11:37 [PATCH 1/5] arm: defconfig: drop unused POWER_AVS option Ross Burton
  2021-09-08 11:37 ` [PATCH 2/5] arm64: " Ross Burton
@ 2021-09-08 11:37 ` Ross Burton
  2021-09-08 11:37 ` [PATCH 4/5] arm64: defconfig: remove obsolete CONFIG_ARCH_AGILEX and CONFIG_ARCH_N5X Ross Burton
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Ross Burton @ 2021-09-08 11:37 UTC (permalink / raw)
  To: linux-arm-kernel; +Cc: catalin.marinas, will

Since 10a7b37b5b ("arm64: Update default configuration") PHY_TEGRA_XUSB
is set to y. That option needs USB_CONN_GPIO to also be y not m, so
set USB_CONN_GPIO explicitly to y to reflect reality.

Signed-off-by: Ross Burton <ross.burton@arm.com>
---
 arch/arm64/configs/defconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index f50751b6eaec..15595d6db256 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -789,7 +789,7 @@ CONFIG_SND_AUDIO_GRAPH_CARD=m
 CONFIG_HID_MULTITOUCH=m
 CONFIG_I2C_HID_ACPI=m
 CONFIG_I2C_HID_OF=m
-CONFIG_USB_CONN_GPIO=m
+CONFIG_USB_CONN_GPIO=y
 CONFIG_USB=y
 CONFIG_USB_OTG=y
 CONFIG_USB_XHCI_HCD=y
-- 
2.25.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] 6+ messages in thread

* [PATCH 4/5] arm64: defconfig: remove obsolete CONFIG_ARCH_AGILEX and CONFIG_ARCH_N5X
  2021-09-08 11:37 [PATCH 1/5] arm: defconfig: drop unused POWER_AVS option Ross Burton
  2021-09-08 11:37 ` [PATCH 2/5] arm64: " Ross Burton
  2021-09-08 11:37 ` [PATCH 3/5] arm64: defconfig: set CONFIG_USB_CONN_GPIO=y Ross Burton
@ 2021-09-08 11:37 ` Ross Burton
  2021-09-08 11:37 ` [PATCH 5/5] arm64: defconfig: don't set CONFIG_ACPI_APEI_PCIEAER Ross Burton
  2021-09-16 16:53 ` [PATCH 1/5] arm: defconfig: drop unused POWER_AVS option Catalin Marinas
  4 siblings, 0 replies; 6+ messages in thread
From: Ross Burton @ 2021-09-08 11:37 UTC (permalink / raw)
  To: linux-arm-kernel; +Cc: catalin.marinas, will

These config options were removed in 4a9a1a5602 ("arm64: socfpga: merge
Agilex and N5X into ARCH_INTEL_SOCFPGA"), so remove them from the
defconfig.

Fixes: 4a9a1a5602 ("arm64: socfpga: merge Agilex and N5X into ARCH_INTEL_SOCFPGA")
Signed-off-by: Ross Burton <ross.burton@arm.com>
---
 arch/arm64/configs/defconfig | 2 --
 1 file changed, 2 deletions(-)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index 15595d6db256..257167463b60 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -28,8 +28,6 @@ CONFIG_KALLSYMS_ALL=y
 # CONFIG_COMPAT_BRK is not set
 CONFIG_PROFILING=y
 CONFIG_ARCH_ACTIONS=y
-CONFIG_ARCH_AGILEX=y
-CONFIG_ARCH_N5X=y
 CONFIG_ARCH_SUNXI=y
 CONFIG_ARCH_ALPINE=y
 CONFIG_ARCH_APPLE=y
-- 
2.25.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] 6+ messages in thread

* [PATCH 5/5] arm64: defconfig: don't set CONFIG_ACPI_APEI_PCIEAER
  2021-09-08 11:37 [PATCH 1/5] arm: defconfig: drop unused POWER_AVS option Ross Burton
                   ` (2 preceding siblings ...)
  2021-09-08 11:37 ` [PATCH 4/5] arm64: defconfig: remove obsolete CONFIG_ARCH_AGILEX and CONFIG_ARCH_N5X Ross Burton
@ 2021-09-08 11:37 ` Ross Burton
  2021-09-16 16:53 ` [PATCH 1/5] arm: defconfig: drop unused POWER_AVS option Catalin Marinas
  4 siblings, 0 replies; 6+ messages in thread
From: Ross Burton @ 2021-09-08 11:37 UTC (permalink / raw)
  To: linux-arm-kernel; +Cc: catalin.marinas, will

Since 8c8ff55 ("PCI/AER: Don't select CONFIG_PCIEAER by default"), PCIe
Advanced Error Reporting isn't enabled by default.. As this means just
enabling CONFIG_CPI_APEI_PCIEAR does not have an effect, remove it from
the defconfig for clarity.

Signed-off-by: Ross Burton <ross.burton@arm.com>
---
 arch/arm64/configs/defconfig | 1 -
 1 file changed, 1 deletion(-)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index 257167463b60..f620f31b0323 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -110,7 +110,6 @@ CONFIG_IMX_SCU_PD=y
 CONFIG_ACPI=y
 CONFIG_ACPI_APEI=y
 CONFIG_ACPI_APEI_GHES=y
-CONFIG_ACPI_APEI_PCIEAER=y
 CONFIG_ACPI_APEI_MEMORY_FAILURE=y
 CONFIG_ACPI_APEI_EINJ=y
 CONFIG_VIRTUALIZATION=y
-- 
2.25.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] 6+ messages in thread

* Re: [PATCH 1/5] arm: defconfig: drop unused POWER_AVS option
  2021-09-08 11:37 [PATCH 1/5] arm: defconfig: drop unused POWER_AVS option Ross Burton
                   ` (3 preceding siblings ...)
  2021-09-08 11:37 ` [PATCH 5/5] arm64: defconfig: don't set CONFIG_ACPI_APEI_PCIEAER Ross Burton
@ 2021-09-16 16:53 ` Catalin Marinas
  4 siblings, 0 replies; 6+ messages in thread
From: Catalin Marinas @ 2021-09-16 16:53 UTC (permalink / raw)
  To: Ross Burton; +Cc: linux-arm-kernel, will, Ulf Hansson, soc

Hi Ross,

On Wed, Sep 08, 2021 at 12:37:13PM +0100, Ross Burton wrote:
> Commit 785b5bb41b0a ("PM: AVS: Drop the avs directory and the
> corresponding Kconfig") moved AVS code to SOC-specific folders, and
> removed corresponding Kconfig from drivers/power, leaving original
> POWER_AVS config option enabled in some defconfigs.
> 
> Remove the options, which have no references in the tree anymore.
> 
> Fixes: 785b5bb41b0a ("PM: AVS: Drop the avs directory and the corresponding Kconfig")
> 
> Signed-off-by: Ross Burton <ross.burton@arm.com>

Since you added a Fixes tag, you should also cc the author of the above
commit (Ulf, added).

In general the arm64 defconfig changes are merged by the arm-soc team
(cc'ing soc@kernel.org).

For the series:

Acked-by: Catalin Marinas <catalin.marinas@arm.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-09-16 16:54 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-09-08 11:37 [PATCH 1/5] arm: defconfig: drop unused POWER_AVS option Ross Burton
2021-09-08 11:37 ` [PATCH 2/5] arm64: " Ross Burton
2021-09-08 11:37 ` [PATCH 3/5] arm64: defconfig: set CONFIG_USB_CONN_GPIO=y Ross Burton
2021-09-08 11:37 ` [PATCH 4/5] arm64: defconfig: remove obsolete CONFIG_ARCH_AGILEX and CONFIG_ARCH_N5X Ross Burton
2021-09-08 11:37 ` [PATCH 5/5] arm64: defconfig: don't set CONFIG_ACPI_APEI_PCIEAER Ross Burton
2021-09-16 16:53 ` [PATCH 1/5] arm: defconfig: drop unused POWER_AVS option Catalin Marinas

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).