* [PATCH 0/2] (no cover subject)
@ 2025-02-24 17:55 Aaron Kling via B4 Relay
2025-02-24 17:55 ` [PATCH 1/2] cpufreq: tegra194: Allow building for Tegra234 Aaron Kling via B4 Relay
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Aaron Kling via B4 Relay @ 2025-02-24 17:55 UTC (permalink / raw)
To: Rafael J. Wysocki, Viresh Kumar, Sumit Gupta, Lorenzo Pieralisi,
Krzysztof Wilczyński, Manivannan Sadhasivam, Rob Herring,
Bjorn Helgaas, Vidya Sagar
Cc: linux-pm, linux-kernel, linux-pci, Aaron Kling
When Tegra234 support was added to existing Tegra drivers, many of them
did not have the matching Kconfig entries updated to allow building for
the arch. A few of those have already been fixed. This series fixes a
couple more.
Signed-off-by: Aaron Kling <webgeek1234@gmail.com>
---
Aaron Kling (2):
cpufreq: tegra194: Allow building for Tegra234
PCI: tegra194: Allow building for Tegra234
drivers/cpufreq/Kconfig.arm | 2 +-
drivers/pci/controller/dwc/Kconfig | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
---
base-commit: d082ecbc71e9e0bf49883ee4afd435a77a5101b6
change-id: 20250224-build-tegra234-c185bda9fd4a
Best regards,
--
Aaron Kling <webgeek1234@gmail.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/2] cpufreq: tegra194: Allow building for Tegra234
2025-02-24 17:55 [PATCH 0/2] (no cover subject) Aaron Kling via B4 Relay
@ 2025-02-24 17:55 ` Aaron Kling via B4 Relay
2025-02-24 17:55 ` [PATCH 2/2] PCI: " Aaron Kling via B4 Relay
2025-03-10 14:08 ` [PATCH 0/2] (no cover subject) Krzysztof Wilczyński
2 siblings, 0 replies; 4+ messages in thread
From: Aaron Kling via B4 Relay @ 2025-02-24 17:55 UTC (permalink / raw)
To: Rafael J. Wysocki, Viresh Kumar, Sumit Gupta, Lorenzo Pieralisi,
Krzysztof Wilczyński, Manivannan Sadhasivam, Rob Herring,
Bjorn Helgaas, Vidya Sagar
Cc: linux-pm, linux-kernel, linux-pci, Aaron Kling
From: Aaron Kling <webgeek1234@gmail.com>
Support was added for Tegra234 in the referenced commit, but the Kconfig
was not updated to allow building for the arch.
Fixes: 273bc890a2a8 ("cpufreq: tegra194: Add support for Tegra234")
Signed-off-by: Aaron Kling <webgeek1234@gmail.com>
---
drivers/cpufreq/Kconfig.arm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/cpufreq/Kconfig.arm b/drivers/cpufreq/Kconfig.arm
index 9e46960f6a862b8b686a79bf3c20f1024ce3d02d..4f9cb943d945c244eb2b29f543d14df6cac4e5d4 100644
--- a/drivers/cpufreq/Kconfig.arm
+++ b/drivers/cpufreq/Kconfig.arm
@@ -254,7 +254,7 @@ config ARM_TEGRA186_CPUFREQ
config ARM_TEGRA194_CPUFREQ
tristate "Tegra194 CPUFreq support"
- depends on ARCH_TEGRA_194_SOC || (64BIT && COMPILE_TEST)
+ depends on ARCH_TEGRA_194_SOC || ARCH_TEGRA_234_SOC || (64BIT && COMPILE_TEST)
depends on TEGRA_BPMP
default y
help
--
2.48.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/2] PCI: tegra194: Allow building for Tegra234
2025-02-24 17:55 [PATCH 0/2] (no cover subject) Aaron Kling via B4 Relay
2025-02-24 17:55 ` [PATCH 1/2] cpufreq: tegra194: Allow building for Tegra234 Aaron Kling via B4 Relay
@ 2025-02-24 17:55 ` Aaron Kling via B4 Relay
2025-03-10 14:08 ` [PATCH 0/2] (no cover subject) Krzysztof Wilczyński
2 siblings, 0 replies; 4+ messages in thread
From: Aaron Kling via B4 Relay @ 2025-02-24 17:55 UTC (permalink / raw)
To: Rafael J. Wysocki, Viresh Kumar, Sumit Gupta, Lorenzo Pieralisi,
Krzysztof Wilczyński, Manivannan Sadhasivam, Rob Herring,
Bjorn Helgaas, Vidya Sagar
Cc: linux-pm, linux-kernel, linux-pci, Aaron Kling
From: Aaron Kling <webgeek1234@gmail.com>
Support was added for Tegra234 in the referenced commit, but the Kconfig
was not updated to allow building for the arch.
Fixes: a54e19073718 ("PCI: tegra194: Add Tegra234 PCIe support")
Signed-off-by: Aaron Kling <webgeek1234@gmail.com>
---
drivers/pci/controller/dwc/Kconfig | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/pci/controller/dwc/Kconfig b/drivers/pci/controller/dwc/Kconfig
index b6d6778b0698b2ab22ef69f6c8d8cd5619ede41f..6dd232cf80642583482827d80c6321dd8e8156da 100644
--- a/drivers/pci/controller/dwc/Kconfig
+++ b/drivers/pci/controller/dwc/Kconfig
@@ -205,7 +205,7 @@ config PCIE_TEGRA194
config PCIE_TEGRA194_HOST
tristate "NVIDIA Tegra194 (and later) PCIe controller (host mode)"
- depends on ARCH_TEGRA_194_SOC || COMPILE_TEST
+ depends on ARCH_TEGRA_194_SOC || ARCH_TEGRA_234_SOC || COMPILE_TEST
depends on PCI_MSI
select PCIE_DW_HOST
select PHY_TEGRA194_P2U
@@ -220,7 +220,7 @@ config PCIE_TEGRA194_HOST
config PCIE_TEGRA194_EP
tristate "NVIDIA Tegra194 (and later) PCIe controller (endpoint mode)"
- depends on ARCH_TEGRA_194_SOC || COMPILE_TEST
+ depends on ARCH_TEGRA_194_SOC || ARCH_TEGRA_234_SOC || COMPILE_TEST
depends on PCI_ENDPOINT
select PCIE_DW_EP
select PHY_TEGRA194_P2U
--
2.48.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 0/2] (no cover subject)
2025-02-24 17:55 [PATCH 0/2] (no cover subject) Aaron Kling via B4 Relay
2025-02-24 17:55 ` [PATCH 1/2] cpufreq: tegra194: Allow building for Tegra234 Aaron Kling via B4 Relay
2025-02-24 17:55 ` [PATCH 2/2] PCI: " Aaron Kling via B4 Relay
@ 2025-03-10 14:08 ` Krzysztof Wilczyński
2 siblings, 0 replies; 4+ messages in thread
From: Krzysztof Wilczyński @ 2025-03-10 14:08 UTC (permalink / raw)
To: webgeek1234
Cc: Rafael J. Wysocki, Viresh Kumar, Sumit Gupta, Lorenzo Pieralisi,
Manivannan Sadhasivam, Rob Herring, Bjorn Helgaas, Vidya Sagar,
linux-pm, linux-kernel, linux-pci
Hello,
> When Tegra234 support was added to existing Tegra drivers, many of them
> did not have the matching Kconfig entries updated to allow building for
> the arch. A few of those have already been fixed. This series fixes a
> couple more.
A similar patch has been posted earlier. Have a look at the conversation there:
https://lore.kernel.org/linux-pci/20250128044244.2766334-1-vidyas@nvidia.com/
Thank you!
Krzysztof
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-03-10 14:08 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-24 17:55 [PATCH 0/2] (no cover subject) Aaron Kling via B4 Relay
2025-02-24 17:55 ` [PATCH 1/2] cpufreq: tegra194: Allow building for Tegra234 Aaron Kling via B4 Relay
2025-02-24 17:55 ` [PATCH 2/2] PCI: " Aaron Kling via B4 Relay
2025-03-10 14:08 ` [PATCH 0/2] (no cover subject) Krzysztof Wilczyński
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox