init.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:5k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _LINUX_INIT_H
  2. #define _LINUX_INIT_H
  3. #include <linux/config.h>
  4. /* These macros are used to mark some functions or 
  5.  * initialized data (doesn't apply to uninitialized data)
  6.  * as `initialization' functions. The kernel can take this
  7.  * as hint that the function is used only during the initialization
  8.  * phase and free up used memory resources after
  9.  *
  10.  * Usage:
  11.  * For functions:
  12.  * 
  13.  * You should add __init immediately before the function name, like:
  14.  *
  15.  * static void __init initme(int x, int y)
  16.  * {
  17.  *    extern int z; z = x * y;
  18.  * }
  19.  *
  20.  * If the function has a prototype somewhere, you can also add
  21.  * __init between closing brace of the prototype and semicolon:
  22.  *
  23.  * extern int initialize_foobar_device(int, int, int) __init;
  24.  *
  25.  * For initialized data:
  26.  * You should insert __initdata between the variable name and equal
  27.  * sign followed by value, e.g.:
  28.  *
  29.  * static int init_variable __initdata = 0;
  30.  * static char linux_logo[] __initdata = { 0x32, 0x36, ... };
  31.  *
  32.  * Don't forget to initialize data not at file scope, i.e. within a function,
  33.  * as gcc otherwise puts the data into the bss section and not into the init
  34.  * section.
  35.  * 
  36.  * Also note, that this data cannot be "const".
  37.  */
  38. #ifndef MODULE
  39. #ifndef __ASSEMBLY__
  40. /*
  41.  * Used for initialization calls..
  42.  */
  43. typedef int (*initcall_t)(void);
  44. typedef void (*exitcall_t)(void);
  45. extern initcall_t __initcall_start, __initcall_end;
  46. #define __initcall(fn)
  47. static initcall_t __initcall_##fn __init_call = fn
  48. #define __exitcall(fn)
  49. static exitcall_t __exitcall_##fn __exit_call = fn
  50. /*
  51.  * Used for kernel command line parameter setup
  52.  */
  53. struct kernel_param {
  54. const char *str;
  55. int (*setup_func)(char *);
  56. };
  57. extern struct kernel_param __setup_start, __setup_end;
  58. #define __setup(str, fn)
  59. static char __setup_str_##fn[] __initdata = str;
  60. static struct kernel_param __setup_##fn __attribute__((unused)) __initsetup = { __setup_str_##fn, fn }
  61. #endif /* __ASSEMBLY__ */
  62. /*
  63.  * Mark functions and data as being only used at initialization
  64.  * or exit time.
  65.  */
  66. #define __init __attribute__ ((__section__ (".text.init")))
  67. #define __exit __attribute__ ((unused, __section__(".text.exit")))
  68. #define __initdata __attribute__ ((__section__ (".data.init")))
  69. #define __exitdata __attribute__ ((unused, __section__ (".data.exit")))
  70. #define __initsetup __attribute__ ((unused,__section__ (".setup.init")))
  71. #define __init_call __attribute__ ((unused,__section__ (".initcall.init")))
  72. #define __exit_call __attribute__ ((unused,__section__ (".exitcall.exit")))
  73. /* For assembly routines */
  74. #define __INIT .section ".text.init","ax"
  75. #define __FINIT .previous
  76. #define __INITDATA .section ".data.init","aw"
  77. /**
  78.  * module_init() - driver initialization entry point
  79.  * @x: function to be run at kernel boot time or module insertion
  80.  * 
  81.  * module_init() will add the driver initialization routine in
  82.  * the "__initcall.int" code segment if the driver is checked as
  83.  * "y" or static, or else it will wrap the driver initialization
  84.  * routine with init_module() which is used by insmod and
  85.  * modprobe when the driver is used as a module.
  86.  */
  87. #define module_init(x) __initcall(x);
  88. /**
  89.  * module_exit() - driver exit entry point
  90.  * @x: function to be run when driver is removed
  91.  * 
  92.  * module_exit() will wrap the driver clean-up code
  93.  * with cleanup_module() when used with rmmod when
  94.  * the driver is a module.  If the driver is statically
  95.  * compiled into the kernel, module_exit() has no effect.
  96.  */
  97. #define module_exit(x) __exitcall(x);
  98. #else /* MODULE */
  99. #define __init
  100. #define __exit
  101. #define __initdata
  102. #define __exitdata
  103. #define __initcall(fn)
  104. /* For assembly routines */
  105. #define __INIT
  106. #define __FINIT
  107. #define __INITDATA
  108. /* These macros create a dummy inline: gcc 2.9x does not count alias
  109.  as usage, hence the `unused function' warning when __init functions
  110.  are declared static. We use the dummy __*_module_inline functions
  111.  both to kill the warning and check the type of the init/cleanup
  112.  function. */
  113. typedef int (*__init_module_func_t)(void);
  114. typedef void (*__cleanup_module_func_t)(void);
  115. #define module_init(x) 
  116. int init_module(void) __attribute__((alias(#x))); 
  117. static inline __init_module_func_t __init_module_inline(void) 
  118. { return x; }
  119. #define module_exit(x) 
  120. void cleanup_module(void) __attribute__((alias(#x))); 
  121. static inline __cleanup_module_func_t __cleanup_module_inline(void) 
  122. { return x; }
  123. #define __setup(str,func) /* nothing */
  124. #endif /* !MODULE */
  125. #ifdef CONFIG_HOTPLUG
  126. #define __devinit
  127. #define __devinitdata
  128. #define __devexit
  129. #define __devexitdata
  130. #else
  131. #define __devinit __init
  132. #define __devinitdata __initdata
  133. #define __devexit __exit
  134. #define __devexitdata __exitdata
  135. #endif
  136. /* Functions marked as __devexit may be discarded at kernel link time, depending
  137.    on config options.  Newer versions of binutils detect references from
  138.    retained sections to discarded sections and flag an error.  Pointers to
  139.    __devexit functions must use __devexit_p(function_name), the wrapper will
  140.    insert either the function_name or NULL, depending on the config options.
  141.  */
  142. #if defined(MODULE) || defined(CONFIG_HOTPLUG)
  143. #define __devexit_p(x) x
  144. #else
  145. #define __devexit_p(x) NULL
  146. #endif
  147. #endif /* _LINUX_INIT_H */