linux-ide.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] ata: dwc: add DMADEVICES dependency
@ 2016-05-11 13:42 Arnd Bergmann
  2016-05-11 13:58 ` Andy Shevchenko
  2016-05-12 16:04 ` Tejun Heo
  0 siblings, 2 replies; 3+ messages in thread
From: Arnd Bergmann @ 2016-05-11 13:42 UTC (permalink / raw)
  To: Tejun Heo
  Cc: Arnd Bergmann, Mans Rullgard, Andy Shevchenko, linux-ide,
	linux-kernel

The dwc_460ex SATA driver has become available on non-powerpc architectures
and may cause randconfig build errors when CONFIG_DMADEVICES is not set
and SATA_DWC_OLD_DMA is enabled:

warning: (SATA_DWC_OLD_DMA) selects DW_DMAC_CORE which has unmet direct dependencies (DMADEVICES)
ERROR: "dw_dma_probe" [drivers/ata/sata_dwc_460ex.ko] undefined!
ERROR: "dw_dma_remove" [drivers/ata/sata_dwc_460ex.ko] undefined!

This adds an explcit Kconfig dependency to CONFIG_SATA_DWC so we
cannot run into broken configurations. While it would also be
possible to build the driver with both CONFIG_DMADEVICES
and SATA_DWC_OLD_DMA disabled, that case is not useful because
there is no fallback to PIO mode when the DMA engine is not
usable.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Fixes: 50b433753df6 ("ata: sata_dwc_460ex: use "dmas" DT property to find dma channel")
---
 drivers/ata/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/ata/Kconfig b/drivers/ata/Kconfig
index 41b0725e58ad..e2dc4c045146 100644
--- a/drivers/ata/Kconfig
+++ b/drivers/ata/Kconfig
@@ -313,6 +313,7 @@ config ATA_PIIX
 
 config SATA_DWC
 	tristate "DesignWare Cores SATA support"
+	depends on DMADEVICES
 	select GENERIC_PHY
 	help
 	  This option enables support for the on-chip SATA controller of the
-- 
2.7.0


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

* Re: [PATCH v2] ata: dwc: add DMADEVICES dependency
  2016-05-11 13:42 [PATCH v2] ata: dwc: add DMADEVICES dependency Arnd Bergmann
@ 2016-05-11 13:58 ` Andy Shevchenko
  2016-05-12 16:04 ` Tejun Heo
  1 sibling, 0 replies; 3+ messages in thread
From: Andy Shevchenko @ 2016-05-11 13:58 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: Tejun Heo, Mans Rullgard, Andy Shevchenko, linux-ide,
	linux-kernel@vger.kernel.org

On Wed, May 11, 2016 at 4:42 PM, Arnd Bergmann <arnd@arndb.de> wrote:
> The dwc_460ex SATA driver has become available on non-powerpc architectures
> and may cause randconfig build errors when CONFIG_DMADEVICES is not set
> and SATA_DWC_OLD_DMA is enabled:
>
> warning: (SATA_DWC_OLD_DMA) selects DW_DMAC_CORE which has unmet direct dependencies (DMADEVICES)
> ERROR: "dw_dma_probe" [drivers/ata/sata_dwc_460ex.ko] undefined!
> ERROR: "dw_dma_remove" [drivers/ata/sata_dwc_460ex.ko] undefined!
>
> This adds an explcit Kconfig dependency to CONFIG_SATA_DWC so we
> cannot run into broken configurations. While it would also be
> possible to build the driver with both CONFIG_DMADEVICES
> and SATA_DWC_OLD_DMA disabled, that case is not useful because
> there is no fallback to PIO mode when the DMA engine is not
> usable.
>
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> Fixes: 50b433753df6 ("ata: sata_dwc_460ex: use "dmas" DT property to find dma channel")

Looks reasonable to me:
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>

> ---
>  drivers/ata/Kconfig | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/drivers/ata/Kconfig b/drivers/ata/Kconfig
> index 41b0725e58ad..e2dc4c045146 100644
> --- a/drivers/ata/Kconfig
> +++ b/drivers/ata/Kconfig
> @@ -313,6 +313,7 @@ config ATA_PIIX
>
>  config SATA_DWC
>         tristate "DesignWare Cores SATA support"
> +       depends on DMADEVICES
>         select GENERIC_PHY
>         help
>           This option enables support for the on-chip SATA controller of the
> --
> 2.7.0
>



-- 
With Best Regards,
Andy Shevchenko

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

* Re: [PATCH v2] ata: dwc: add DMADEVICES dependency
  2016-05-11 13:42 [PATCH v2] ata: dwc: add DMADEVICES dependency Arnd Bergmann
  2016-05-11 13:58 ` Andy Shevchenko
@ 2016-05-12 16:04 ` Tejun Heo
  1 sibling, 0 replies; 3+ messages in thread
From: Tejun Heo @ 2016-05-12 16:04 UTC (permalink / raw)
  To: Arnd Bergmann; +Cc: Mans Rullgard, Andy Shevchenko, linux-ide, linux-kernel

On Wed, May 11, 2016 at 03:42:08PM +0200, Arnd Bergmann wrote:
> The dwc_460ex SATA driver has become available on non-powerpc architectures
> and may cause randconfig build errors when CONFIG_DMADEVICES is not set
> and SATA_DWC_OLD_DMA is enabled:
> 
> warning: (SATA_DWC_OLD_DMA) selects DW_DMAC_CORE which has unmet direct dependencies (DMADEVICES)
> ERROR: "dw_dma_probe" [drivers/ata/sata_dwc_460ex.ko] undefined!
> ERROR: "dw_dma_remove" [drivers/ata/sata_dwc_460ex.ko] undefined!
> 
> This adds an explcit Kconfig dependency to CONFIG_SATA_DWC so we
> cannot run into broken configurations. While it would also be
> possible to build the driver with both CONFIG_DMADEVICES
> and SATA_DWC_OLD_DMA disabled, that case is not useful because
> there is no fallback to PIO mode when the DMA engine is not
> usable.
> 
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> Fixes: 50b433753df6 ("ata: sata_dwc_460ex: use "dmas" DT property to find dma channel")

Applied to libata/for-4.7-dw.

Thanks.

-- 
tejun

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

end of thread, other threads:[~2016-05-12 16:23 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-11 13:42 [PATCH v2] ata: dwc: add DMADEVICES dependency Arnd Bergmann
2016-05-11 13:58 ` Andy Shevchenko
2016-05-12 16:04 ` Tejun Heo

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