linux-riscv.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] PCI: keystone: Enable compile-testing on !ARM
       [not found] <20200906194850.63glbnehjcuw356k@lenovo-laptop>
@ 2020-09-06 19:51 ` Alex Dewar
  2020-09-19 19:30   ` Alex Dewar
                     ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Alex Dewar @ 2020-09-06 19:51 UTC (permalink / raw)
  Cc: Rob Herring, Lorenzo Pieralisi, Dilip Kota, Kunihiko Hayashi,
	Gustavo Pimentel, Jonathan Chocron, linux-pci, linux-kernel,
	Krzysztof Kozlowski, Vidya Sagar, Albert Ou, Palmer Dabbelt,
	Paul Walmsley, Bjorn Helgaas, linux-riscv, Thierry Reding,
	Alex Dewar, Andrew Murray

Currently the Keystone driver can only be compile-tested on ARM, but
this restriction seems unnecessary. Get rid of it to increase test
coverage.

Build-tested with allyesconfig on x86, ppc, mips and riscv.

Signed-off-by: Alex Dewar <alex.dewar90@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 044a3761c44f..ca36691314ed 100644
--- a/drivers/pci/controller/dwc/Kconfig
+++ b/drivers/pci/controller/dwc/Kconfig
@@ -107,7 +107,7 @@ config PCI_KEYSTONE
 
 config PCI_KEYSTONE_HOST
 	bool "PCI Keystone Host Mode"
-	depends on ARCH_KEYSTONE || ARCH_K3 || ((ARM || ARM64) && COMPILE_TEST)
+	depends on ARCH_KEYSTONE || ARCH_K3 || COMPILE_TEST
 	depends on PCI_MSI_IRQ_DOMAIN
 	select PCIE_DW_HOST
 	select PCI_KEYSTONE
@@ -119,7 +119,7 @@ config PCI_KEYSTONE_HOST
 
 config PCI_KEYSTONE_EP
 	bool "PCI Keystone Endpoint Mode"
-	depends on ARCH_KEYSTONE || ARCH_K3 || ((ARM || ARM64) && COMPILE_TEST)
+	depends on ARCH_KEYSTONE || ARCH_K3 || COMPILE_TEST
 	depends on PCI_ENDPOINT
 	select PCIE_DW_EP
 	select PCI_KEYSTONE
-- 
2.28.0


_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

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

* Re: [PATCH v2] PCI: keystone: Enable compile-testing on !ARM
  2020-09-06 19:51 ` [PATCH v2] PCI: keystone: Enable compile-testing on !ARM Alex Dewar
@ 2020-09-19 19:30   ` Alex Dewar
  2020-09-30 18:21   ` Rob Herring
  2020-11-19 10:47   ` Lorenzo Pieralisi
  2 siblings, 0 replies; 5+ messages in thread
From: Alex Dewar @ 2020-09-19 19:30 UTC (permalink / raw)
  Cc: Rob Herring, Lorenzo Pieralisi, Dilip Kota, Kunihiko Hayashi,
	Gustavo Pimentel, Jonathan Chocron, linux-pci, linux-kernel,
	Krzysztof Kozlowski, Vidya Sagar, Albert Ou, Palmer Dabbelt,
	Paul Walmsley, Bjorn Helgaas, linux-riscv, Thierry Reding,
	Andrew Murray

On 2020-09-06 20:51, Alex Dewar wrote:
> Currently the Keystone driver can only be compile-tested on ARM, but
> this restriction seems unnecessary. Get rid of it to increase test
> coverage.
Friendly ping?
>
> Build-tested with allyesconfig on x86, ppc, mips and riscv.
>
> Signed-off-by: Alex Dewar <alex.dewar90@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 044a3761c44f..ca36691314ed 100644
> --- a/drivers/pci/controller/dwc/Kconfig
> +++ b/drivers/pci/controller/dwc/Kconfig
> @@ -107,7 +107,7 @@ config PCI_KEYSTONE
>   
>   config PCI_KEYSTONE_HOST
>   	bool "PCI Keystone Host Mode"
> -	depends on ARCH_KEYSTONE || ARCH_K3 || ((ARM || ARM64) && COMPILE_TEST)
> +	depends on ARCH_KEYSTONE || ARCH_K3 || COMPILE_TEST
>   	depends on PCI_MSI_IRQ_DOMAIN
>   	select PCIE_DW_HOST
>   	select PCI_KEYSTONE
> @@ -119,7 +119,7 @@ config PCI_KEYSTONE_HOST
>   
>   config PCI_KEYSTONE_EP
>   	bool "PCI Keystone Endpoint Mode"
> -	depends on ARCH_KEYSTONE || ARCH_K3 || ((ARM || ARM64) && COMPILE_TEST)
> +	depends on ARCH_KEYSTONE || ARCH_K3 || COMPILE_TEST
>   	depends on PCI_ENDPOINT
>   	select PCIE_DW_EP
>   	select PCI_KEYSTONE


_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

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

* Re: [PATCH v2] PCI: keystone: Enable compile-testing on !ARM
  2020-09-06 19:51 ` [PATCH v2] PCI: keystone: Enable compile-testing on !ARM Alex Dewar
  2020-09-19 19:30   ` Alex Dewar
@ 2020-09-30 18:21   ` Rob Herring
  2020-10-10  9:04     ` Alex Dewar
  2020-11-19 10:47   ` Lorenzo Pieralisi
  2 siblings, 1 reply; 5+ messages in thread
From: Rob Herring @ 2020-09-30 18:21 UTC (permalink / raw)
  To: Alex Dewar
  Cc: Lorenzo Pieralisi, Kunihiko Hayashi, Dilip Kota, linux-pci,
	Jonathan Chocron, linux-kernel, Krzysztof Kozlowski, Vidya Sagar,
	Albert Ou, Palmer Dabbelt, Gustavo Pimentel, Paul Walmsley,
	Bjorn Helgaas, linux-riscv, Thierry Reding, Andrew Murray

On Sun, 06 Sep 2020 20:51:27 +0100, Alex Dewar wrote:
> Currently the Keystone driver can only be compile-tested on ARM, but
> this restriction seems unnecessary. Get rid of it to increase test
> coverage.
> 
> Build-tested with allyesconfig on x86, ppc, mips and riscv.
> 
> Signed-off-by: Alex Dewar <alex.dewar90@gmail.com>
> ---
>  drivers/pci/controller/dwc/Kconfig | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 

Acked-by: Rob Herring <robh@kernel.org>

_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

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

* Re: [PATCH v2] PCI: keystone: Enable compile-testing on !ARM
  2020-09-30 18:21   ` Rob Herring
@ 2020-10-10  9:04     ` Alex Dewar
  0 siblings, 0 replies; 5+ messages in thread
From: Alex Dewar @ 2020-10-10  9:04 UTC (permalink / raw)
  To: Lorenzo Pieralisi, Murali Karicheri
  Cc: Rob Herring, Albert Ou, Kunihiko Hayashi, Dilip Kota, linux-pci,
	Jonathan Chocron, linux-kernel, Krzysztof Kozlowski, Vidya Sagar,
	Palmer Dabbelt, Gustavo Pimentel, Paul Walmsley, Bjorn Helgaas,
	linux-riscv, Thierry Reding, Andrew Murray

On 30/09/2020 19:21, Rob Herring wrote:
> On Sun, 06 Sep 2020 20:51:27 +0100, Alex Dewar wrote:
>> Currently the Keystone driver can only be compile-tested on ARM, but
>> this restriction seems unnecessary. Get rid of it to increase test
>> coverage.
>>
>> Build-tested with allyesconfig on x86, ppc, mips and riscv.
>>
>> Signed-off-by: Alex Dewar <alex.dewar90@gmail.com>
>> ---
>>   drivers/pci/controller/dwc/Kconfig | 4 ++--
>>   1 file changed, 2 insertions(+), 2 deletions(-)
>>
> Acked-by: Rob Herring <robh@kernel.org>

Ping ping? :-)

_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

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

* Re: [PATCH v2] PCI: keystone: Enable compile-testing on !ARM
  2020-09-06 19:51 ` [PATCH v2] PCI: keystone: Enable compile-testing on !ARM Alex Dewar
  2020-09-19 19:30   ` Alex Dewar
  2020-09-30 18:21   ` Rob Herring
@ 2020-11-19 10:47   ` Lorenzo Pieralisi
  2 siblings, 0 replies; 5+ messages in thread
From: Lorenzo Pieralisi @ 2020-11-19 10:47 UTC (permalink / raw)
  To: Alex Dewar
  Cc: Rob Herring, Lorenzo Pieralisi, Kunihiko Hayashi, Dilip Kota,
	linux-pci, Jonathan Chocron, linux-kernel, Krzysztof Kozlowski,
	Vidya Sagar, Albert Ou, Palmer Dabbelt, Paul Walmsley,
	Gustavo Pimentel, Bjorn Helgaas, linux-riscv, Thierry Reding,
	Andrew Murray

On Sun, 6 Sep 2020 20:51:27 +0100, Alex Dewar wrote:
> Currently the Keystone driver can only be compile-tested on ARM, but
> this restriction seems unnecessary. Get rid of it to increase test
> coverage.
> 
> Build-tested with allyesconfig on x86, ppc, mips and riscv.

Applied to pci/keystone, thanks!

[1/1] PCI: keystone: Enable compile-testing on !ARM
      https://git.kernel.org/lpieralisi/pci/c/476b70b4d1

Thanks,
Lorenzo

_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

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

end of thread, other threads:[~2020-11-19 10:48 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20200906194850.63glbnehjcuw356k@lenovo-laptop>
2020-09-06 19:51 ` [PATCH v2] PCI: keystone: Enable compile-testing on !ARM Alex Dewar
2020-09-19 19:30   ` Alex Dewar
2020-09-30 18:21   ` Rob Herring
2020-10-10  9:04     ` Alex Dewar
2020-11-19 10:47   ` Lorenzo Pieralisi

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).