* [PATCH] dmaengine: ti: k3-udma: enable compile testing
2025-11-17 16:12 [PATCH 00/15] dmaengine: fix device leaks Johan Hovold
@ 2025-11-17 16:12 ` Johan Hovold
2025-11-17 16:14 ` Johan Hovold
0 siblings, 1 reply; 4+ messages in thread
From: Johan Hovold @ 2025-11-17 16:12 UTC (permalink / raw)
To: Vinod Koul
Cc: Ludovic Desroches, Viresh Kumar, Andy Shevchenko,
Vinicius Costa Gomes, Dave Jiang, Vladimir Zapolskiy,
Piotr Wojtaszczyk, Amélie Delaunay, Maxime Coquelin,
Alexandre Torgue, Peter Ujfalusi, dmaengine, linux-kernel,
Johan Hovold
There does not seem to be anything preventing the K3 UDMA drivers from
being compile tested (on arm64 as one dependency depends on ARM64) so
enable compile testing for wider build coverage.
Note that the ring accelerator dependency can only be selected when
"TI SOC drivers support" (SOC_TI) is enabled so select that option too.
Signed-off-by: Johan Hovold <johan@kernel.org>
---
drivers/dma/ti/Kconfig | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/drivers/dma/ti/Kconfig b/drivers/dma/ti/Kconfig
index dbf168146d35..cbc30ab62783 100644
--- a/drivers/dma/ti/Kconfig
+++ b/drivers/dma/ti/Kconfig
@@ -36,11 +36,12 @@ config DMA_OMAP
config TI_K3_UDMA
tristate "Texas Instruments UDMA support"
- depends on ARCH_K3
+ depends on ARCH_K3 || COMPILE_TEST
depends on TI_SCI_PROTOCOL
depends on TI_SCI_INTA_IRQCHIP
select DMA_ENGINE
select DMA_VIRTUAL_CHANNELS
+ select SOC_TI
select TI_K3_RINGACC
select TI_K3_PSIL
help
@@ -49,7 +50,7 @@ config TI_K3_UDMA
config TI_K3_UDMA_GLUE_LAYER
tristate "Texas Instruments UDMA Glue layer for non DMAengine users"
- depends on ARCH_K3
+ depends on ARCH_K3 || COMPILE_TEST
depends on TI_K3_UDMA
help
Say y here to support the K3 NAVSS DMA glue interface
--
2.51.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] dmaengine: ti: k3-udma: enable compile testing
2025-11-17 16:12 ` [PATCH] dmaengine: ti: k3-udma: enable compile testing Johan Hovold
@ 2025-11-17 16:14 ` Johan Hovold
0 siblings, 0 replies; 4+ messages in thread
From: Johan Hovold @ 2025-11-17 16:14 UTC (permalink / raw)
To: Vinod Koul
Cc: Ludovic Desroches, Viresh Kumar, Andy Shevchenko,
Vinicius Costa Gomes, Dave Jiang, Vladimir Zapolskiy,
Piotr Wojtaszczyk, Amélie Delaunay, Maxime Coquelin,
Alexandre Torgue, Peter Ujfalusi, dmaengine, linux-kernel
On Mon, Nov 17, 2025 at 05:12:44PM +0100, Johan Hovold wrote:
> There does not seem to be anything preventing the K3 UDMA drivers from
> being compile tested (on arm64 as one dependency depends on ARM64) so
> enable compile testing for wider build coverage.
>
> Note that the ring accelerator dependency can only be selected when
> "TI SOC drivers support" (SOC_TI) is enabled so select that option too.
>
> Signed-off-by: Johan Hovold <johan@kernel.org>
> ---
Please disregard this one which was supposed to be sent separately.
Johan
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] dmaengine: ti: k3-udma: enable compile testing
@ 2025-11-17 16:18 Johan Hovold
2025-12-16 16:59 ` Vinod Koul
0 siblings, 1 reply; 4+ messages in thread
From: Johan Hovold @ 2025-11-17 16:18 UTC (permalink / raw)
To: Vinod Koul, Peter Ujfalusi; +Cc: dmaengine, linux-kernel, Johan Hovold
There does not seem to be anything preventing the K3 UDMA drivers from
being compile tested (on arm64 as one dependency depends on ARM64) so
enable compile testing for wider build coverage.
Note that the ring accelerator dependency can only be selected when
"TI SOC drivers support" (SOC_TI) is enabled so select that option too.
Signed-off-by: Johan Hovold <johan@kernel.org>
---
drivers/dma/ti/Kconfig | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/drivers/dma/ti/Kconfig b/drivers/dma/ti/Kconfig
index dbf168146d35..cbc30ab62783 100644
--- a/drivers/dma/ti/Kconfig
+++ b/drivers/dma/ti/Kconfig
@@ -36,11 +36,12 @@ config DMA_OMAP
config TI_K3_UDMA
tristate "Texas Instruments UDMA support"
- depends on ARCH_K3
+ depends on ARCH_K3 || COMPILE_TEST
depends on TI_SCI_PROTOCOL
depends on TI_SCI_INTA_IRQCHIP
select DMA_ENGINE
select DMA_VIRTUAL_CHANNELS
+ select SOC_TI
select TI_K3_RINGACC
select TI_K3_PSIL
help
@@ -49,7 +50,7 @@ config TI_K3_UDMA
config TI_K3_UDMA_GLUE_LAYER
tristate "Texas Instruments UDMA Glue layer for non DMAengine users"
- depends on ARCH_K3
+ depends on ARCH_K3 || COMPILE_TEST
depends on TI_K3_UDMA
help
Say y here to support the K3 NAVSS DMA glue interface
--
2.51.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] dmaengine: ti: k3-udma: enable compile testing
2025-11-17 16:18 [PATCH] dmaengine: ti: k3-udma: enable compile testing Johan Hovold
@ 2025-12-16 16:59 ` Vinod Koul
0 siblings, 0 replies; 4+ messages in thread
From: Vinod Koul @ 2025-12-16 16:59 UTC (permalink / raw)
To: Peter Ujfalusi, Johan Hovold; +Cc: dmaengine, linux-kernel
On Mon, 17 Nov 2025 17:18:51 +0100, Johan Hovold wrote:
> There does not seem to be anything preventing the K3 UDMA drivers from
> being compile tested (on arm64 as one dependency depends on ARM64) so
> enable compile testing for wider build coverage.
>
> Note that the ring accelerator dependency can only be selected when
> "TI SOC drivers support" (SOC_TI) is enabled so select that option too.
>
> [...]
Applied, thanks!
[1/1] dmaengine: ti: k3-udma: enable compile testing
commit: c381f1a38a4c7542cc6ec049d4dcff90a9423e89
Best regards,
--
~Vinod
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-12-16 16:59 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-17 16:18 [PATCH] dmaengine: ti: k3-udma: enable compile testing Johan Hovold
2025-12-16 16:59 ` Vinod Koul
-- strict thread matches above, loose matches on Subject: below --
2025-11-17 16:12 [PATCH 00/15] dmaengine: fix device leaks Johan Hovold
2025-11-17 16:12 ` [PATCH] dmaengine: ti: k3-udma: enable compile testing Johan Hovold
2025-11-17 16:14 ` Johan Hovold
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).