Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | #ifndef _LINUX_UML_INIT_H |
| 3 | #define _LINUX_UML_INIT_H |
| 4 | |
| 5 | /* These macros are used to mark some functions or |
| 6 | * initialized data (doesn't apply to uninitialized data) |
| 7 | * as `initialization' functions. The kernel can take this |
| 8 | * as hint that the function is used only during the initialization |
| 9 | * phase and free up used memory resources after |
| 10 | * |
| 11 | * Usage: |
| 12 | * For functions: |
| 13 | * |
| 14 | * You should add __init immediately before the function name, like: |
| 15 | * |
| 16 | * static void __init initme(int x, int y) |
| 17 | * { |
| 18 | * extern int z; z = x * y; |
| 19 | * } |
| 20 | * |
| 21 | * If the function has a prototype somewhere, you can also add |
| 22 | * __init between closing brace of the prototype and semicolon: |
| 23 | * |
| 24 | * extern int initialize_foobar_device(int, int, int) __init; |
| 25 | * |
| 26 | * For initialized data: |
| 27 | * You should insert __initdata between the variable name and equal |
| 28 | * sign followed by value, e.g.: |
| 29 | * |
| 30 | * static int init_variable __initdata = 0; |
Geert Uytterhoeven | ae52bb2 | 2009-06-16 15:34:19 -0700 | [diff] [blame] | 31 | * static const char linux_logo[] __initconst = { 0x32, 0x36, ... }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | * |
| 33 | * Don't forget to initialize data not at file scope, i.e. within a function, |
| 34 | * as gcc otherwise puts the data into the bss section and not into the init |
| 35 | * section. |
| 36 | * |
| 37 | * Also note, that this data cannot be "const". |
| 38 | */ |
| 39 | |
| 40 | #ifndef _LINUX_INIT_H |
| 41 | typedef int (*initcall_t)(void); |
| 42 | typedef void (*exitcall_t)(void); |
| 43 | |
Will Deacon | d151558 | 2017-10-24 11:22:46 +0100 | [diff] [blame] | 44 | #include <linux/compiler_types.h> |
Richard Weinberger | 30b11ee | 2015-05-31 22:15:58 +0200 | [diff] [blame] | 45 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | /* These are for everybody (although not all archs will actually |
| 47 | discard it in modules) */ |
Adrian Bunk | 3ff6eec | 2008-01-24 22:16:20 +0100 | [diff] [blame] | 48 | #define __init __section(.init.text) |
| 49 | #define __initdata __section(.init.data) |
| 50 | #define __exitdata __section(.exit.data) |
| 51 | #define __exit_call __used __section(.exitcall.exit) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
| 53 | #ifdef MODULE |
Adrian Bunk | 3ff6eec | 2008-01-24 22:16:20 +0100 | [diff] [blame] | 54 | #define __exit __section(.exit.text) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | #else |
Adrian Bunk | 3ff6eec | 2008-01-24 22:16:20 +0100 | [diff] [blame] | 56 | #define __exit __used __section(.exit.text) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | #endif |
| 58 | |
| 59 | #endif |
| 60 | |
| 61 | #ifndef MODULE |
| 62 | struct uml_param { |
| 63 | const char *str; |
| 64 | int (*setup_func)(char *, int *); |
| 65 | }; |
| 66 | |
| 67 | extern initcall_t __uml_initcall_start, __uml_initcall_end; |
| 68 | extern initcall_t __uml_postsetup_start, __uml_postsetup_end; |
| 69 | extern const char *__uml_help_start, *__uml_help_end; |
| 70 | #endif |
| 71 | |
| 72 | #define __uml_initcall(fn) \ |
| 73 | static initcall_t __uml_initcall_##fn __uml_init_call = fn |
| 74 | |
| 75 | #define __uml_exitcall(fn) \ |
| 76 | static exitcall_t __uml_exitcall_##fn __uml_exit_call = fn |
| 77 | |
| 78 | extern struct uml_param __uml_setup_start, __uml_setup_end; |
| 79 | |
| 80 | #define __uml_postsetup(fn) \ |
| 81 | static initcall_t __uml_postsetup_##fn __uml_postsetup_call = fn |
| 82 | |
| 83 | #define __non_empty_string(dummyname,string) \ |
| 84 | struct __uml_non_empty_string_struct_##dummyname \ |
| 85 | { \ |
| 86 | char _string[sizeof(string)-2]; \ |
| 87 | } |
| 88 | |
| 89 | #ifndef MODULE |
| 90 | #define __uml_setup(str, fn, help...) \ |
| 91 | __non_empty_string(fn ##_setup, str); \ |
| 92 | __uml_help(fn, help); \ |
| 93 | static char __uml_setup_str_##fn[] __initdata = str; \ |
| 94 | static struct uml_param __uml_setup_##fn __uml_init_setup = { __uml_setup_str_##fn, fn } |
| 95 | #else |
| 96 | #define __uml_setup(str, fn, help...) \ |
| 97 | |
| 98 | #endif |
| 99 | |
| 100 | #define __uml_help(fn, help...) \ |
| 101 | __non_empty_string(fn ##__help, help); \ |
| 102 | static char __uml_help_str_##fn[] __initdata = help; \ |
| 103 | static const char *__uml_help_##fn __uml_setup_help = __uml_help_str_##fn |
| 104 | |
| 105 | /* |
| 106 | * Mark functions and data as being only used at initialization |
| 107 | * or exit time. |
| 108 | */ |
Adrian Bunk | 3ff6eec | 2008-01-24 22:16:20 +0100 | [diff] [blame] | 109 | #define __uml_init_setup __used __section(.uml.setup.init) |
| 110 | #define __uml_setup_help __used __section(.uml.help.init) |
| 111 | #define __uml_init_call __used __section(.uml.initcall.init) |
| 112 | #define __uml_postsetup_call __used __section(.uml.postsetup.init) |
| 113 | #define __uml_exit_call __used __section(.uml.exitcall.exit) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | |
Richard Weinberger | 298e20b | 2015-05-31 19:50:57 +0200 | [diff] [blame] | 115 | #ifdef __UM_HOST__ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | |
Jeff Dike | 75e5584 | 2005-09-03 15:57:45 -0700 | [diff] [blame] | 117 | #define __define_initcall(level,fn) \ |
Adrian Bunk | 3ff6eec | 2008-01-24 22:16:20 +0100 | [diff] [blame] | 118 | static initcall_t __initcall_##fn __used \ |
Jeff Dike | 75e5584 | 2005-09-03 15:57:45 -0700 | [diff] [blame] | 119 | __attribute__((__section__(".initcall" level ".init"))) = fn |
| 120 | |
| 121 | /* Userspace initcalls shouldn't depend on anything in the kernel, so we'll |
| 122 | * make them run first. |
| 123 | */ |
| 124 | #define __initcall(fn) __define_initcall("1", fn) |
| 125 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | #define __exitcall(fn) static exitcall_t __exitcall_##fn __exit_call = fn |
| 127 | |
Adrian Bunk | 3ff6eec | 2008-01-24 22:16:20 +0100 | [diff] [blame] | 128 | #define __init_call __used __section(.initcall.init) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | |
| 130 | #endif |
| 131 | |
| 132 | #endif /* _LINUX_UML_INIT_H */ |