powercap/drivers/dtpm: Convert the init table section to a simple array
authorDaniel Lezcano <daniel.lezcano@linaro.org>
Fri, 28 Jan 2022 16:35:33 +0000 (17:35 +0100)
committerDaniel Lezcano <daniel.lezcano@linaro.org>
Fri, 4 Feb 2022 16:38:09 +0000 (17:38 +0100)
The init table section is freed after the system booted. However the
next changes will make per module the DTPM description, so the table
won't be accessible when the module is loaded.

In order to fix that, we should move the table to the data section
where there are very few entries and that makes strange to add it
there.

The main goal of the table was to keep self-encapsulated code and we
can keep it almost as it by using an array instead.

Suggested-by: Ulf Hansson <ulf.hansson@linaro.org>
Reviewed-by: Ulf Hansson <ulf.hansson@linaro.org>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Link: https://lore.kernel.org/r/20220128163537.212248-2-daniel.lezcano@linaro.org
drivers/powercap/dtpm.c
drivers/powercap/dtpm_cpu.c
drivers/powercap/dtpm_subsys.h [new file with mode: 0644]
include/asm-generic/vmlinux.lds.h
include/linux/dtpm.h

index 8cb45f2..0e5c934 100644 (file)
@@ -24,6 +24,8 @@
 #include <linux/slab.h>
 #include <linux/mutex.h>
 
+#include "dtpm_subsys.h"
+
 #define DTPM_POWER_LIMIT_FLAG 0
 
 static const char *constraint_name[] = {
index b740866..5763e0c 100644 (file)
@@ -269,4 +269,7 @@ static int __init dtpm_cpu_init(void)
        return 0;
 }
 
-DTPM_DECLARE(dtpm_cpu, dtpm_cpu_init);
+struct dtpm_subsys_ops dtpm_cpu_ops = {
+       .name = KBUILD_MODNAME,
+       .init = dtpm_cpu_init,
+};
diff --git a/drivers/powercap/dtpm_subsys.h b/drivers/powercap/dtpm_subsys.h
new file mode 100644 (file)
index 0000000..2a3a205
--- /dev/null
@@ -0,0 +1,18 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+/*
+ * Copyright (C) 2022 Linaro Ltd
+ *
+ * Author: Daniel Lezcano <daniel.lezcano@linaro.org>
+ */
+#ifndef ___DTPM_SUBSYS_H__
+#define ___DTPM_SUBSYS_H__
+
+extern struct dtpm_subsys_ops dtpm_cpu_ops;
+
+struct dtpm_subsys_ops *dtpm_subsys[] = {
+#ifdef CONFIG_DTPM_CPU
+       &dtpm_cpu_ops,
+#endif
+};
+
+#endif
index 42f3866..2a10db2 100644 (file)
 #define THERMAL_TABLE(name)
 #endif
 
-#ifdef CONFIG_DTPM
-#define DTPM_TABLE()                                                   \
-       . = ALIGN(8);                                                   \
-       __dtpm_table = .;                                               \
-       KEEP(*(__dtpm_table))                                           \
-       __dtpm_table_end = .;
-#else
-#define DTPM_TABLE()
-#endif
-
 #define KERNEL_DTB()                                                   \
        STRUCT_ALIGN();                                                 \
        __dtb_start = .;                                                \
        ACPI_PROBE_TABLE(irqchip)                                       \
        ACPI_PROBE_TABLE(timer)                                         \
        THERMAL_TABLE(governor)                                         \
-       DTPM_TABLE()                                                    \
        EARLYCON_TABLE()                                                \
        LSM_TABLE()                                                     \
        EARLY_LSM_TABLE()                                               \
index d37e5d0..5060481 100644 (file)
@@ -32,29 +32,11 @@ struct dtpm_ops {
        void (*release)(struct dtpm *);
 };
 
-typedef int (*dtpm_init_t)(void);
-
-struct dtpm_descr {
-       dtpm_init_t init;
+struct dtpm_subsys_ops {
+       const char *name;
+       int (*init)(void);
 };
 
-/* Init section thermal table */
-extern struct dtpm_descr __dtpm_table[];
-extern struct dtpm_descr __dtpm_table_end[];
-
-#define DTPM_TABLE_ENTRY(name, __init)                         \
-       static struct dtpm_descr __dtpm_table_entry_##name      \
-       __used __section("__dtpm_table") = {                    \
-               .init = __init,                                 \
-       }
-
-#define DTPM_DECLARE(name, init)       DTPM_TABLE_ENTRY(name, init)
-
-#define for_each_dtpm_table(__dtpm)    \
-       for (__dtpm = __dtpm_table;     \
-            __dtpm < __dtpm_table_end; \
-            __dtpm++)
-
 static inline struct dtpm *to_dtpm(struct powercap_zone *zone)
 {
        return container_of(zone, struct dtpm, zone);