* [PATCH v2 0/3] dma/ti: enable udma and psil to be built as modules
@ 2022-09-27 23:08 Kevin Hilman
2022-09-27 23:08 ` [PATCH v2 1/3] of/irq: export of_msi_get_domain Kevin Hilman
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Kevin Hilman @ 2022-09-27 23:08 UTC (permalink / raw)
To: Peter Ujfalusi, dmaengine; +Cc: linux-omap, linux-arm-kernel, Nicolas Frayer
Enable the UDMA driver & glue and PSIL lib to be built & loaded as modules.
The defauilt Kconfig settings are not changed, so default upstream is
still to be built in. This series just enables the option to build as
modules.
v1->v2:
- rework PSIL lib into a single .ko
Kevin Hilman (3):
of/irq: export of_msi_get_domain
dma/ti: convert k3-udma to module
dma/ti: convert PSIL to be buildable as module
drivers/dma/ti/Kconfig | 7 +++---
drivers/dma/ti/Makefile | 15 +++++++------
drivers/dma/ti/k3-psil.c | 2 ++
drivers/dma/ti/k3-udma-glue.c | 5 ++++-
drivers/dma/ti/k3-udma.c | 40 +++++------------------------------
drivers/of/irq.c | 1 +
6 files changed, 24 insertions(+), 46 deletions(-)
base-commit: 568035b01cfb107af8d2e4bd2fb9aea22cf5b868
--
2.34.0
_______________________________________________
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] 8+ messages in thread* [PATCH v2 1/3] of/irq: export of_msi_get_domain 2022-09-27 23:08 [PATCH v2 0/3] dma/ti: enable udma and psil to be built as modules Kevin Hilman @ 2022-09-27 23:08 ` Kevin Hilman 2022-09-27 23:08 ` [PATCH v2 2/3] dma/ti: convert k3-udma to module Kevin Hilman 2022-09-27 23:08 ` [PATCH v2 3/3] dma/ti: convert PSIL to be buildable as module Kevin Hilman 2 siblings, 0 replies; 8+ messages in thread From: Kevin Hilman @ 2022-09-27 23:08 UTC (permalink / raw) To: Peter Ujfalusi, dmaengine; +Cc: linux-omap, linux-arm-kernel, Nicolas Frayer Export of_mis_get_domain to enable it for users from outside. Signed-off-by: Matthias Brugger <mbrugger@suse.com> Acked-by: Rob Herring <robh@kernel.org> Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com> Link: https://lore.kernel.org/r/20200122104723.16955-1-peter.ujfalusi@ti.com Signed-off-by: Kevin Hilman <khilman@baylibre.com> --- drivers/of/irq.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/of/irq.c b/drivers/of/irq.c index d22f605fa7ee..c9308baa32c5 100644 --- a/drivers/of/irq.c +++ b/drivers/of/irq.c @@ -727,6 +727,7 @@ struct irq_domain *of_msi_get_domain(struct device *dev, return NULL; } +EXPORT_SYMBOL_GPL(of_msi_get_domain); /** * of_msi_configure - Set the msi_domain field of a device -- 2.34.0 _______________________________________________ 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] 8+ messages in thread
* [PATCH v2 2/3] dma/ti: convert k3-udma to module 2022-09-27 23:08 [PATCH v2 0/3] dma/ti: enable udma and psil to be built as modules Kevin Hilman 2022-09-27 23:08 ` [PATCH v2 1/3] of/irq: export of_msi_get_domain Kevin Hilman @ 2022-09-27 23:08 ` Kevin Hilman 2022-09-28 14:59 ` Corentin Labbe 2022-09-29 7:35 ` Vinod Koul 2022-09-27 23:08 ` [PATCH v2 3/3] dma/ti: convert PSIL to be buildable as module Kevin Hilman 2 siblings, 2 replies; 8+ messages in thread From: Kevin Hilman @ 2022-09-27 23:08 UTC (permalink / raw) To: Peter Ujfalusi, dmaengine; +Cc: linux-omap, linux-arm-kernel, Nicolas Frayer Currently k3-udma driver is built as separate platform drivers with a shared probe and identical code path, just differnet platform data. To enable to build as module, convert the separate platform driver into a single module_platform_driver with the data selection done via compatible string and of_match. The separate of_match tables are also combined into a single table to avoid the multiple calls to of_match_node() Since all modern TI platforms using this are DT enabled, the removal of separate platform_drivers shoul should nave no functional change. Signed-off-by: Kevin Hilman <khilman@baylibre.com> Acked-by: Peter Ujfalusi <peter.ujfalusi@gmail.com> --- drivers/dma/ti/Kconfig | 4 ++-- drivers/dma/ti/k3-udma-glue.c | 5 ++++- drivers/dma/ti/k3-udma.c | 40 +++++------------------------------ 3 files changed, 11 insertions(+), 38 deletions(-) diff --git a/drivers/dma/ti/Kconfig b/drivers/dma/ti/Kconfig index 79618fac119a..f196be3b222f 100644 --- a/drivers/dma/ti/Kconfig +++ b/drivers/dma/ti/Kconfig @@ -35,7 +35,7 @@ config DMA_OMAP DMA engine is found on OMAP and DRA7xx parts. config TI_K3_UDMA - bool "Texas Instruments UDMA support" + tristate "Texas Instruments UDMA support" depends on ARCH_K3 depends on TI_SCI_PROTOCOL depends on TI_SCI_INTA_IRQCHIP @@ -48,7 +48,7 @@ config TI_K3_UDMA DMA engine is used in AM65x and j721e. config TI_K3_UDMA_GLUE_LAYER - bool "Texas Instruments UDMA Glue layer for non DMAengine users" + tristate "Texas Instruments UDMA Glue layer for non DMAengine users" depends on ARCH_K3 depends on TI_K3_UDMA help diff --git a/drivers/dma/ti/k3-udma-glue.c b/drivers/dma/ti/k3-udma-glue.c index 4fdd9f06b723..c29de4695ae7 100644 --- a/drivers/dma/ti/k3-udma-glue.c +++ b/drivers/dma/ti/k3-udma-glue.c @@ -6,6 +6,7 @@ * */ +#include <linux/module.h> #include <linux/atomic.h> #include <linux/delay.h> #include <linux/dma-mapping.h> @@ -1433,4 +1434,6 @@ static int __init k3_udma_glue_class_init(void) { return class_register(&k3_udma_glue_devclass); } -arch_initcall(k3_udma_glue_class_init); + +module_init(k3_udma_glue_class_init); +MODULE_LICENSE("GPL v2"); diff --git a/drivers/dma/ti/k3-udma.c b/drivers/dma/ti/k3-udma.c index 2f0d2c68c93c..7239ff31c8c5 100644 --- a/drivers/dma/ti/k3-udma.c +++ b/drivers/dma/ti/k3-udma.c @@ -5,6 +5,7 @@ */ #include <linux/kernel.h> +#include <linux/module.h> #include <linux/delay.h> #include <linux/dmaengine.h> #include <linux/dma-mapping.h> @@ -4318,18 +4319,10 @@ static const struct of_device_id udma_of_match[] = { .compatible = "ti,j721e-navss-mcu-udmap", .data = &j721e_mcu_data, }, - { /* Sentinel */ }, -}; - -static const struct of_device_id bcdma_of_match[] = { { .compatible = "ti,am64-dmss-bcdma", .data = &am64_bcdma_data, }, - { /* Sentinel */ }, -}; - -static const struct of_device_id pktdma_of_match[] = { { .compatible = "ti,am64-dmss-pktdma", .data = &am64_pktdma_data, @@ -5254,14 +5247,9 @@ static int udma_probe(struct platform_device *pdev) return -ENOMEM; match = of_match_node(udma_of_match, dev->of_node); - if (!match) - match = of_match_node(bcdma_of_match, dev->of_node); if (!match) { - match = of_match_node(pktdma_of_match, dev->of_node); - if (!match) { - dev_err(dev, "No compatible match found\n"); - return -ENODEV; - } + dev_err(dev, "No compatible match found\n"); + return -ENODEV; } ud->match_data = match->data; @@ -5494,27 +5482,9 @@ static struct platform_driver udma_driver = { }, .probe = udma_probe, }; -builtin_platform_driver(udma_driver); -static struct platform_driver bcdma_driver = { - .driver = { - .name = "ti-bcdma", - .of_match_table = bcdma_of_match, - .suppress_bind_attrs = true, - }, - .probe = udma_probe, -}; -builtin_platform_driver(bcdma_driver); - -static struct platform_driver pktdma_driver = { - .driver = { - .name = "ti-pktdma", - .of_match_table = pktdma_of_match, - .suppress_bind_attrs = true, - }, - .probe = udma_probe, -}; -builtin_platform_driver(pktdma_driver); +module_platform_driver(udma_driver); +MODULE_LICENSE("GPL v2"); /* Private interfaces to UDMA */ #include "k3-udma-private.c" -- 2.34.0 _______________________________________________ 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] 8+ messages in thread
* Re: [PATCH v2 2/3] dma/ti: convert k3-udma to module 2022-09-27 23:08 ` [PATCH v2 2/3] dma/ti: convert k3-udma to module Kevin Hilman @ 2022-09-28 14:59 ` Corentin Labbe 2022-09-29 7:35 ` Vinod Koul 1 sibling, 0 replies; 8+ messages in thread From: Corentin Labbe @ 2022-09-28 14:59 UTC (permalink / raw) To: Kevin Hilman Cc: Peter Ujfalusi, dmaengine, linux-omap, linux-arm-kernel, Nicolas Frayer Le Tue, Sep 27, 2022 at 04:08:03PM -0700, Kevin Hilman a écrit : > Currently k3-udma driver is built as separate platform drivers with a > shared probe and identical code path, just differnet platform data. > > To enable to build as module, convert the separate platform driver > into a single module_platform_driver with the data selection done via > compatible string and of_match. The separate of_match tables are also > combined into a single table to avoid the multiple calls to > of_match_node() > > Since all modern TI platforms using this are DT enabled, the removal > of separate platform_drivers shoul should nave no functional change. > Hello You have some typo in last sentence. (extra shoul, nave->have) Regards _______________________________________________ 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] 8+ messages in thread
* Re: [PATCH v2 2/3] dma/ti: convert k3-udma to module 2022-09-27 23:08 ` [PATCH v2 2/3] dma/ti: convert k3-udma to module Kevin Hilman 2022-09-28 14:59 ` Corentin Labbe @ 2022-09-29 7:35 ` Vinod Koul 2022-09-29 23:31 ` Kevin Hilman 1 sibling, 1 reply; 8+ messages in thread From: Vinod Koul @ 2022-09-29 7:35 UTC (permalink / raw) To: Kevin Hilman Cc: Peter Ujfalusi, dmaengine, linux-omap, linux-arm-kernel, Nicolas Frayer On 27-09-22, 16:08, Kevin Hilman wrote: > Currently k3-udma driver is built as separate platform drivers with a > shared probe and identical code path, just differnet platform data. > > To enable to build as module, convert the separate platform driver > into a single module_platform_driver with the data selection done via > compatible string and of_match. The separate of_match tables are also > combined into a single table to avoid the multiple calls to > of_match_node() > > Since all modern TI platforms using this are DT enabled, the removal > of separate platform_drivers shoul should nave no functional change. drop extra shoul Please change subsystem tag to dmaengine: ti: xxxx for this and next patch > > Signed-off-by: Kevin Hilman <khilman@baylibre.com> > Acked-by: Peter Ujfalusi <peter.ujfalusi@gmail.com> this has trailing whitespaces, maybe copy paste error > --- > drivers/dma/ti/Kconfig | 4 ++-- > drivers/dma/ti/k3-udma-glue.c | 5 ++++- > drivers/dma/ti/k3-udma.c | 40 +++++------------------------------ > 3 files changed, 11 insertions(+), 38 deletions(-) > > diff --git a/drivers/dma/ti/Kconfig b/drivers/dma/ti/Kconfig > index 79618fac119a..f196be3b222f 100644 > --- a/drivers/dma/ti/Kconfig > +++ b/drivers/dma/ti/Kconfig > @@ -35,7 +35,7 @@ config DMA_OMAP > DMA engine is found on OMAP and DRA7xx parts. > > config TI_K3_UDMA > - bool "Texas Instruments UDMA support" > + tristate "Texas Instruments UDMA support" > depends on ARCH_K3 > depends on TI_SCI_PROTOCOL > depends on TI_SCI_INTA_IRQCHIP > @@ -48,7 +48,7 @@ config TI_K3_UDMA > DMA engine is used in AM65x and j721e. > > config TI_K3_UDMA_GLUE_LAYER > - bool "Texas Instruments UDMA Glue layer for non DMAengine users" > + tristate "Texas Instruments UDMA Glue layer for non DMAengine users" > depends on ARCH_K3 > depends on TI_K3_UDMA > help > diff --git a/drivers/dma/ti/k3-udma-glue.c b/drivers/dma/ti/k3-udma-glue.c > index 4fdd9f06b723..c29de4695ae7 100644 > --- a/drivers/dma/ti/k3-udma-glue.c > +++ b/drivers/dma/ti/k3-udma-glue.c > @@ -6,6 +6,7 @@ > * > */ > > +#include <linux/module.h> > #include <linux/atomic.h> > #include <linux/delay.h> > #include <linux/dma-mapping.h> > @@ -1433,4 +1434,6 @@ static int __init k3_udma_glue_class_init(void) > { > return class_register(&k3_udma_glue_devclass); > } > -arch_initcall(k3_udma_glue_class_init); > + > +module_init(k3_udma_glue_class_init); > +MODULE_LICENSE("GPL v2"); > diff --git a/drivers/dma/ti/k3-udma.c b/drivers/dma/ti/k3-udma.c > index 2f0d2c68c93c..7239ff31c8c5 100644 > --- a/drivers/dma/ti/k3-udma.c > +++ b/drivers/dma/ti/k3-udma.c > @@ -5,6 +5,7 @@ > */ > > #include <linux/kernel.h> > +#include <linux/module.h> > #include <linux/delay.h> > #include <linux/dmaengine.h> > #include <linux/dma-mapping.h> > @@ -4318,18 +4319,10 @@ static const struct of_device_id udma_of_match[] = { > .compatible = "ti,j721e-navss-mcu-udmap", > .data = &j721e_mcu_data, > }, > - { /* Sentinel */ }, > -}; > - > -static const struct of_device_id bcdma_of_match[] = { > { > .compatible = "ti,am64-dmss-bcdma", > .data = &am64_bcdma_data, > }, > - { /* Sentinel */ }, > -}; > - > -static const struct of_device_id pktdma_of_match[] = { > { > .compatible = "ti,am64-dmss-pktdma", > .data = &am64_pktdma_data, > @@ -5254,14 +5247,9 @@ static int udma_probe(struct platform_device *pdev) > return -ENOMEM; > > match = of_match_node(udma_of_match, dev->of_node); > - if (!match) > - match = of_match_node(bcdma_of_match, dev->of_node); > if (!match) { > - match = of_match_node(pktdma_of_match, dev->of_node); > - if (!match) { > - dev_err(dev, "No compatible match found\n"); > - return -ENODEV; > - } > + dev_err(dev, "No compatible match found\n"); > + return -ENODEV; > } > ud->match_data = match->data; > > @@ -5494,27 +5482,9 @@ static struct platform_driver udma_driver = { > }, > .probe = udma_probe, > }; > -builtin_platform_driver(udma_driver); > > -static struct platform_driver bcdma_driver = { > - .driver = { > - .name = "ti-bcdma", > - .of_match_table = bcdma_of_match, > - .suppress_bind_attrs = true, > - }, > - .probe = udma_probe, > -}; > -builtin_platform_driver(bcdma_driver); > - > -static struct platform_driver pktdma_driver = { > - .driver = { > - .name = "ti-pktdma", > - .of_match_table = pktdma_of_match, > - .suppress_bind_attrs = true, > - }, > - .probe = udma_probe, > -}; > -builtin_platform_driver(pktdma_driver); > +module_platform_driver(udma_driver); > +MODULE_LICENSE("GPL v2"); > > /* Private interfaces to UDMA */ > #include "k3-udma-private.c" > -- > 2.34.0 -- ~Vinod _______________________________________________ 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] 8+ messages in thread
* Re: [PATCH v2 2/3] dma/ti: convert k3-udma to module 2022-09-29 7:35 ` Vinod Koul @ 2022-09-29 23:31 ` Kevin Hilman 0 siblings, 0 replies; 8+ messages in thread From: Kevin Hilman @ 2022-09-29 23:31 UTC (permalink / raw) To: Vinod Koul Cc: Peter Ujfalusi, dmaengine, linux-omap, linux-arm-kernel, Nicolas Frayer Hi Vinod, Vinod Koul <vkoul@kernel.org> writes: > On 27-09-22, 16:08, Kevin Hilman wrote: >> Currently k3-udma driver is built as separate platform drivers with a >> shared probe and identical code path, just differnet platform data. >> >> To enable to build as module, convert the separate platform driver >> into a single module_platform_driver with the data selection done via >> compatible string and of_match. The separate of_match tables are also >> combined into a single table to avoid the multiple calls to >> of_match_node() >> >> Since all modern TI platforms using this are DT enabled, the removal >> of separate platform_drivers shoul should nave no functional change. > > drop extra shoul > > Please change subsystem tag to dmaengine: ti: xxxx for this and next > patch OK. >> >> Signed-off-by: Kevin Hilman <khilman@baylibre.com> >> Acked-by: Peter Ujfalusi <peter.ujfalusi@gmail.com> > > this has trailing whitespaces, maybe copy paste error Yup. Thanks for the review. Will respin. Kevin _______________________________________________ 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] 8+ messages in thread
* [PATCH v2 3/3] dma/ti: convert PSIL to be buildable as module 2022-09-27 23:08 [PATCH v2 0/3] dma/ti: enable udma and psil to be built as modules Kevin Hilman 2022-09-27 23:08 ` [PATCH v2 1/3] of/irq: export of_msi_get_domain Kevin Hilman 2022-09-27 23:08 ` [PATCH v2 2/3] dma/ti: convert k3-udma to module Kevin Hilman @ 2022-09-27 23:08 ` Kevin Hilman 2022-09-28 13:53 ` Péter Ujfalusi 2 siblings, 1 reply; 8+ messages in thread From: Kevin Hilman @ 2022-09-27 23:08 UTC (permalink / raw) To: Peter Ujfalusi, dmaengine; +Cc: linux-omap, linux-arm-kernel, Nicolas Frayer Combine all the SoC specific files into a single lib that can be built-in or built as a module. Signed-off-by: Kevin Hilman <khilman@baylibre.com> --- drivers/dma/ti/Kconfig | 3 ++- drivers/dma/ti/Makefile | 15 ++++++++------- drivers/dma/ti/k3-psil.c | 2 ++ 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/drivers/dma/ti/Kconfig b/drivers/dma/ti/Kconfig index f196be3b222f..2adc2cca10e9 100644 --- a/drivers/dma/ti/Kconfig +++ b/drivers/dma/ti/Kconfig @@ -56,7 +56,8 @@ config TI_K3_UDMA_GLUE_LAYER If unsure, say N. config TI_K3_PSIL - bool + tristate + default TI_K3_UDMA config TI_DMA_CROSSBAR bool diff --git a/drivers/dma/ti/Makefile b/drivers/dma/ti/Makefile index d3a303f0d7c6..383bbd6d12b9 100644 --- a/drivers/dma/ti/Makefile +++ b/drivers/dma/ti/Makefile @@ -4,11 +4,12 @@ obj-$(CONFIG_TI_EDMA) += edma.o obj-$(CONFIG_DMA_OMAP) += omap-dma.o obj-$(CONFIG_TI_K3_UDMA) += k3-udma.o obj-$(CONFIG_TI_K3_UDMA_GLUE_LAYER) += k3-udma-glue.o -obj-$(CONFIG_TI_K3_PSIL) += k3-psil.o \ - k3-psil-am654.o \ - k3-psil-j721e.o \ - k3-psil-j7200.o \ - k3-psil-am64.o \ - k3-psil-j721s2.o \ - k3-psil-am62.o +obj-$(CONFIG_TI_K3_PSIL) += k3-psil-lib.o +k3-psil-lib-objs := k3-psil.o \ + k3-psil-am654.o \ + k3-psil-j721e.o \ + k3-psil-j7200.o \ + k3-psil-am64.o \ + k3-psil-j721s2.o \ + k3-psil-am62.o obj-$(CONFIG_TI_DMA_CROSSBAR) += dma-crossbar.o diff --git a/drivers/dma/ti/k3-psil.c b/drivers/dma/ti/k3-psil.c index 761a384093d2..8b6533a1eeeb 100644 --- a/drivers/dma/ti/k3-psil.c +++ b/drivers/dma/ti/k3-psil.c @@ -5,6 +5,7 @@ */ #include <linux/kernel.h> +#include <linux/module.h> #include <linux/device.h> #include <linux/init.h> #include <linux/mutex.h> @@ -101,3 +102,4 @@ int psil_set_new_ep_config(struct device *dev, const char *name, return 0; } EXPORT_SYMBOL_GPL(psil_set_new_ep_config); +MODULE_LICENSE("GPL v2"); -- 2.34.0 _______________________________________________ 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] 8+ messages in thread
* Re: [PATCH v2 3/3] dma/ti: convert PSIL to be buildable as module 2022-09-27 23:08 ` [PATCH v2 3/3] dma/ti: convert PSIL to be buildable as module Kevin Hilman @ 2022-09-28 13:53 ` Péter Ujfalusi 0 siblings, 0 replies; 8+ messages in thread From: Péter Ujfalusi @ 2022-09-28 13:53 UTC (permalink / raw) To: Kevin Hilman, dmaengine; +Cc: linux-omap, linux-arm-kernel, Nicolas Frayer Hi Kevin, On 28/09/2022 02:08, Kevin Hilman wrote: > Combine all the SoC specific files into a single lib that can be > built-in or built as a module. > > Signed-off-by: Kevin Hilman <khilman@baylibre.com> > --- > drivers/dma/ti/Kconfig | 3 ++- > drivers/dma/ti/Makefile | 15 ++++++++------- > drivers/dma/ti/k3-psil.c | 2 ++ > 3 files changed, 12 insertions(+), 8 deletions(-) > > diff --git a/drivers/dma/ti/Kconfig b/drivers/dma/ti/Kconfig > index f196be3b222f..2adc2cca10e9 100644 > --- a/drivers/dma/ti/Kconfig > +++ b/drivers/dma/ti/Kconfig > @@ -56,7 +56,8 @@ config TI_K3_UDMA_GLUE_LAYER > If unsure, say N. > > config TI_K3_PSIL > - bool > + tristate > + default TI_K3_UDMA > > config TI_DMA_CROSSBAR > bool > diff --git a/drivers/dma/ti/Makefile b/drivers/dma/ti/Makefile > index d3a303f0d7c6..383bbd6d12b9 100644 > --- a/drivers/dma/ti/Makefile > +++ b/drivers/dma/ti/Makefile > @@ -4,11 +4,12 @@ obj-$(CONFIG_TI_EDMA) += edma.o > obj-$(CONFIG_DMA_OMAP) += omap-dma.o > obj-$(CONFIG_TI_K3_UDMA) += k3-udma.o > obj-$(CONFIG_TI_K3_UDMA_GLUE_LAYER) += k3-udma-glue.o > -obj-$(CONFIG_TI_K3_PSIL) += k3-psil.o \ > - k3-psil-am654.o \ > - k3-psil-j721e.o \ > - k3-psil-j7200.o \ > - k3-psil-am64.o \ > - k3-psil-j721s2.o \ > - k3-psil-am62.o > +obj-$(CONFIG_TI_K3_PSIL) += k3-psil-lib.o > +k3-psil-lib-objs := k3-psil.o \ > + k3-psil-am654.o \ > + k3-psil-j721e.o \ > + k3-psil-j7200.o \ > + k3-psil-am64.o \ > + k3-psil-j721s2.o \ > + k3-psil-am62.o Can you reverse the order? First declare the objects needed for k3-psil-lib. It is more natural and easier to read. With that change you can add my: Acked-by: Peter Ujfalusi <peter.ujfalusi@gmail.com> > obj-$(CONFIG_TI_DMA_CROSSBAR) += dma-crossbar.o > diff --git a/drivers/dma/ti/k3-psil.c b/drivers/dma/ti/k3-psil.c > index 761a384093d2..8b6533a1eeeb 100644 > --- a/drivers/dma/ti/k3-psil.c > +++ b/drivers/dma/ti/k3-psil.c > @@ -5,6 +5,7 @@ > */ > > #include <linux/kernel.h> > +#include <linux/module.h> > #include <linux/device.h> > #include <linux/init.h> > #include <linux/mutex.h> > @@ -101,3 +102,4 @@ int psil_set_new_ep_config(struct device *dev, const char *name, > return 0; > } > EXPORT_SYMBOL_GPL(psil_set_new_ep_config); > +MODULE_LICENSE("GPL v2"); -- Péter _______________________________________________ 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] 8+ messages in thread
end of thread, other threads:[~2022-09-29 23:36 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-09-27 23:08 [PATCH v2 0/3] dma/ti: enable udma and psil to be built as modules Kevin Hilman 2022-09-27 23:08 ` [PATCH v2 1/3] of/irq: export of_msi_get_domain Kevin Hilman 2022-09-27 23:08 ` [PATCH v2 2/3] dma/ti: convert k3-udma to module Kevin Hilman 2022-09-28 14:59 ` Corentin Labbe 2022-09-29 7:35 ` Vinod Koul 2022-09-29 23:31 ` Kevin Hilman 2022-09-27 23:08 ` [PATCH v2 3/3] dma/ti: convert PSIL to be buildable as module Kevin Hilman 2022-09-28 13:53 ` Péter Ujfalusi
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).