]> Git Repo - J-linux.git/commitdiff
firmware: arm_ffa: Split bus and driver into distinct modules
authorSudeep Holla <[email protected]>
Wed, 15 May 2024 09:40:28 +0000 (10:40 +0100)
committerSudeep Holla <[email protected]>
Wed, 29 May 2024 22:23:25 +0000 (23:23 +0100)
Make the FF-A bus on its own as a distinct module initialized at
subsys_initcall level when builtin.

Keep the FF-A driver core stack, together with any configured transport,
in a different module initialized as module_init level.

FF-A drivers initialization is now changed to module_init level.

Acked-by: Sebastian Ene <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Sudeep Holla <[email protected]>
drivers/firmware/arm_ffa/Makefile
drivers/firmware/arm_ffa/bus.c
drivers/firmware/arm_ffa/common.h
drivers/firmware/arm_ffa/driver.c

index 9d9f375232003e0aeaf66730fda99d1861f7b467..168990a7e7923df622ab6cc982f439fde201b2e4 100644 (file)
@@ -2,5 +2,7 @@
 ffa-bus-y = bus.o
 ffa-driver-y = driver.o
 ffa-transport-$(CONFIG_ARM_FFA_SMCCC) += smccc.o
-ffa-module-objs := $(ffa-bus-y) $(ffa-driver-y) $(ffa-transport-y)
-obj-$(CONFIG_ARM_FFA_TRANSPORT) = ffa-module.o
+ffa-core-objs := $(ffa-bus-y)
+ffa-module-objs := $(ffa-driver-y) $(ffa-transport-y)
+obj-$(CONFIG_ARM_FFA_TRANSPORT)  = ffa-core.o
+obj-$(CONFIG_ARM_FFA_TRANSPORT) += ffa-module.o
index 4baaec7f0a0968ecc4db0a95b22b7c865ad80546..0c83931485f60c4d0fcf819db63817c793da0bdb 100644 (file)
@@ -235,14 +235,21 @@ void ffa_device_unregister(struct ffa_device *ffa_dev)
 }
 EXPORT_SYMBOL_GPL(ffa_device_unregister);
 
-int arm_ffa_bus_init(void)
+static int __init arm_ffa_bus_init(void)
 {
        return bus_register(&ffa_bus_type);
 }
+subsys_initcall(arm_ffa_bus_init);
 
-void arm_ffa_bus_exit(void)
+static void __exit arm_ffa_bus_exit(void)
 {
        ffa_devices_unregister();
        bus_unregister(&ffa_bus_type);
        ida_destroy(&ffa_bus_id);
 }
+module_exit(arm_ffa_bus_exit);
+
+MODULE_ALIAS("ffa-core");
+MODULE_AUTHOR("Sudeep Holla <[email protected]>");
+MODULE_DESCRIPTION("ARM FF-A bus");
+MODULE_LICENSE("GPL");
index d6eccf1fd3f68a3b1f6ad34f4188cd4b1c983201..9c6425a81d0d5b7c56935ea4ed43f2c3904d37a1 100644 (file)
@@ -14,8 +14,6 @@ typedef struct arm_smccc_1_2_regs ffa_value_t;
 
 typedef void (ffa_fn)(ffa_value_t, ffa_value_t *);
 
-int arm_ffa_bus_init(void);
-void arm_ffa_bus_exit(void);
 bool ffa_device_is_valid(struct ffa_device *ffa_dev);
 void ffa_device_match_uuid(struct ffa_device *ffa_dev, const uuid_t *uuid);
 
index 61d514776e5b1b6d678e189c27e43c170db840c4..7ba98c7af2e980860ff8f26ed6460e31d1e08660 100644 (file)
@@ -1608,14 +1608,9 @@ static int __init ffa_init(void)
        if (ret)
                return ret;
 
-       ret = arm_ffa_bus_init();
-       if (ret)
-               return ret;
-
        drv_info = kzalloc(sizeof(*drv_info), GFP_KERNEL);
        if (!drv_info) {
-               ret = -ENOMEM;
-               goto ffa_bus_exit;
+               return -ENOMEM;
        }
 
        ret = ffa_version_check(&drv_info->version);
@@ -1676,11 +1671,9 @@ free_pages:
        free_pages_exact(drv_info->rx_buffer, RXTX_BUFFER_SIZE);
 free_drv_info:
        kfree(drv_info);
-ffa_bus_exit:
-       arm_ffa_bus_exit();
        return ret;
 }
-subsys_initcall(ffa_init);
+module_init(ffa_init);
 
 static void __exit ffa_exit(void)
 {
@@ -1690,7 +1683,6 @@ static void __exit ffa_exit(void)
        free_pages_exact(drv_info->tx_buffer, RXTX_BUFFER_SIZE);
        free_pages_exact(drv_info->rx_buffer, RXTX_BUFFER_SIZE);
        kfree(drv_info);
-       arm_ffa_bus_exit();
 }
 module_exit(ffa_exit);
 
This page took 0.055078 seconds and 4 git commands to generate.