powerpc/8xx: Fix regression introduced by cache coherency rewrite
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / linux / moduleparam.h
bloba4f0b931846c25e2e0db59e863490287f62d4b63
1 #ifndef _LINUX_MODULE_PARAMS_H
2 #define _LINUX_MODULE_PARAMS_H
3 /* (C) Copyright 2001, 2002 Rusty Russell IBM Corporation */
4 #include <linux/init.h>
5 #include <linux/stringify.h>
6 #include <linux/kernel.h>
8 /* You can override this manually, but generally this should match the
9 module name. */
10 #ifdef MODULE
11 #define MODULE_PARAM_PREFIX /* empty */
12 #else
13 #define MODULE_PARAM_PREFIX KBUILD_MODNAME "."
14 #endif
16 /* Chosen so that structs with an unsigned long line up. */
17 #define MAX_PARAM_PREFIX_LEN (64 - sizeof(unsigned long))
19 #ifdef MODULE
20 #define ___module_cat(a,b) __mod_ ## a ## b
21 #define __module_cat(a,b) ___module_cat(a,b)
22 #define __MODULE_INFO(tag, name, info) \
23 static const char __module_cat(name,__LINE__)[] \
24 __used \
25 __attribute__((section(".modinfo"),unused)) = __stringify(tag) "=" info
26 #else /* !MODULE */
27 #define __MODULE_INFO(tag, name, info)
28 #endif
29 #define __MODULE_PARM_TYPE(name, _type) \
30 __MODULE_INFO(parmtype, name##type, #name ":" _type)
32 struct kernel_param;
34 /* Returns 0, or -errno. arg is in kp->arg. */
35 typedef int (*param_set_fn)(const char *val, struct kernel_param *kp);
36 /* Returns length written or -errno. Buffer is 4k (ie. be short!) */
37 typedef int (*param_get_fn)(char *buffer, struct kernel_param *kp);
39 struct kernel_param {
40 const char *name;
41 unsigned int perm;
42 param_set_fn set;
43 param_get_fn get;
44 union {
45 void *arg;
46 const struct kparam_string *str;
47 const struct kparam_array *arr;
51 /* Special one for strings we want to copy into */
52 struct kparam_string {
53 unsigned int maxlen;
54 char *string;
57 /* Special one for arrays */
58 struct kparam_array
60 unsigned int max;
61 unsigned int *num;
62 param_set_fn set;
63 param_get_fn get;
64 unsigned int elemsize;
65 void *elem;
68 /* On alpha, ia64 and ppc64 relocations to global data cannot go into
69 read-only sections (which is part of respective UNIX ABI on these
70 platforms). So 'const' makes no sense and even causes compile failures
71 with some compilers. */
72 #if defined(CONFIG_ALPHA) || defined(CONFIG_IA64) || defined(CONFIG_PPC64)
73 #define __moduleparam_const
74 #else
75 #define __moduleparam_const const
76 #endif
78 /* This is the fundamental function for registering boot/module
79 parameters. perm sets the visibility in sysfs: 000 means it's
80 not there, read bits mean it's readable, write bits mean it's
81 writable. */
82 #define __module_param_call(prefix, name, set, get, arg, perm) \
83 /* Default value instead of permissions? */ \
84 static int __param_perm_check_##name __attribute__((unused)) = \
85 BUILD_BUG_ON_ZERO((perm) < 0 || (perm) > 0777 || ((perm) & 2)) \
86 + BUILD_BUG_ON_ZERO(sizeof(""prefix) > MAX_PARAM_PREFIX_LEN); \
87 static const char __param_str_##name[] = prefix #name; \
88 static struct kernel_param __moduleparam_const __param_##name \
89 __used \
90 __attribute__ ((unused,__section__ ("__param"),aligned(sizeof(void *)))) \
91 = { __param_str_##name, perm, set, get, { arg } }
93 #define module_param_call(name, set, get, arg, perm) \
94 __module_param_call(MODULE_PARAM_PREFIX, name, set, get, arg, perm)
96 /* Helper functions: type is byte, short, ushort, int, uint, long,
97 ulong, charp, bool or invbool, or XXX if you define param_get_XXX,
98 param_set_XXX and param_check_XXX. */
99 #define module_param_named(name, value, type, perm) \
100 param_check_##type(name, &(value)); \
101 module_param_call(name, param_set_##type, param_get_##type, &value, perm); \
102 __MODULE_PARM_TYPE(name, #type)
104 #define module_param(name, type, perm) \
105 module_param_named(name, name, type, perm)
107 #ifndef MODULE
109 * core_param - define a historical core kernel parameter.
110 * @name: the name of the cmdline and sysfs parameter (often the same as var)
111 * @var: the variable
112 * @type: the type (for param_set_##type and param_get_##type)
113 * @perm: visibility in sysfs
115 * core_param is just like module_param(), but cannot be modular and
116 * doesn't add a prefix (such as "printk."). This is for compatibility
117 * with __setup(), and it makes sense as truly core parameters aren't
118 * tied to the particular file they're in.
120 #define core_param(name, var, type, perm) \
121 param_check_##type(name, &(var)); \
122 __module_param_call("", name, param_set_##type, param_get_##type, \
123 &var, perm)
124 #endif /* !MODULE */
126 /* Actually copy string: maxlen param is usually sizeof(string). */
127 #define module_param_string(name, string, len, perm) \
128 static const struct kparam_string __param_string_##name \
129 = { len, string }; \
130 module_param_call(name, param_set_copystring, param_get_string, \
131 .str = &__param_string_##name, perm); \
132 __MODULE_PARM_TYPE(name, "string")
134 /* Called on module insert or kernel boot */
135 extern int parse_args(const char *name,
136 char *args,
137 struct kernel_param *params,
138 unsigned num,
139 int (*unknown)(char *param, char *val));
141 /* Called by module remove. */
142 #ifdef CONFIG_SYSFS
143 extern void destroy_params(const struct kernel_param *params, unsigned num);
144 #else
145 static inline void destroy_params(const struct kernel_param *params,
146 unsigned num)
149 #endif /* !CONFIG_SYSFS */
151 /* All the helper functions */
152 /* The macros to do compile-time type checking stolen from Jakub
153 Jelinek, who IIRC came up with this idea for the 2.4 module init code. */
154 #define __param_check(name, p, type) \
155 static inline type *__check_##name(void) { return(p); }
157 extern int param_set_byte(const char *val, struct kernel_param *kp);
158 extern int param_get_byte(char *buffer, struct kernel_param *kp);
159 #define param_check_byte(name, p) __param_check(name, p, unsigned char)
161 extern int param_set_short(const char *val, struct kernel_param *kp);
162 extern int param_get_short(char *buffer, struct kernel_param *kp);
163 #define param_check_short(name, p) __param_check(name, p, short)
165 extern int param_set_ushort(const char *val, struct kernel_param *kp);
166 extern int param_get_ushort(char *buffer, struct kernel_param *kp);
167 #define param_check_ushort(name, p) __param_check(name, p, unsigned short)
169 extern int param_set_int(const char *val, struct kernel_param *kp);
170 extern int param_get_int(char *buffer, struct kernel_param *kp);
171 #define param_check_int(name, p) __param_check(name, p, int)
173 extern int param_set_uint(const char *val, struct kernel_param *kp);
174 extern int param_get_uint(char *buffer, struct kernel_param *kp);
175 #define param_check_uint(name, p) __param_check(name, p, unsigned int)
177 extern int param_set_long(const char *val, struct kernel_param *kp);
178 extern int param_get_long(char *buffer, struct kernel_param *kp);
179 #define param_check_long(name, p) __param_check(name, p, long)
181 extern int param_set_ulong(const char *val, struct kernel_param *kp);
182 extern int param_get_ulong(char *buffer, struct kernel_param *kp);
183 #define param_check_ulong(name, p) __param_check(name, p, unsigned long)
185 extern int param_set_charp(const char *val, struct kernel_param *kp);
186 extern int param_get_charp(char *buffer, struct kernel_param *kp);
187 #define param_check_charp(name, p) __param_check(name, p, char *)
189 extern int param_set_bool(const char *val, struct kernel_param *kp);
190 extern int param_get_bool(char *buffer, struct kernel_param *kp);
191 #define param_check_bool(name, p) __param_check(name, p, int)
193 extern int param_set_invbool(const char *val, struct kernel_param *kp);
194 extern int param_get_invbool(char *buffer, struct kernel_param *kp);
195 #define param_check_invbool(name, p) __param_check(name, p, int)
197 /* Comma-separated array: *nump is set to number they actually specified. */
198 #define module_param_array_named(name, array, type, nump, perm) \
199 static const struct kparam_array __param_arr_##name \
200 = { ARRAY_SIZE(array), nump, param_set_##type, param_get_##type,\
201 sizeof(array[0]), array }; \
202 module_param_call(name, param_array_set, param_array_get, \
203 .arr = &__param_arr_##name, perm); \
204 __MODULE_PARM_TYPE(name, "array of " #type)
206 #define module_param_array(name, type, nump, perm) \
207 module_param_array_named(name, name, type, nump, perm)
209 extern int param_array_set(const char *val, struct kernel_param *kp);
210 extern int param_array_get(char *buffer, struct kernel_param *kp);
212 extern int param_set_copystring(const char *val, struct kernel_param *kp);
213 extern int param_get_string(char *buffer, struct kernel_param *kp);
215 /* for exporting parameters in /sys/parameters */
217 struct module;
219 #if defined(CONFIG_SYSFS) && defined(CONFIG_MODULES)
220 extern int module_param_sysfs_setup(struct module *mod,
221 struct kernel_param *kparam,
222 unsigned int num_params);
224 extern void module_param_sysfs_remove(struct module *mod);
225 #else
226 static inline int module_param_sysfs_setup(struct module *mod,
227 struct kernel_param *kparam,
228 unsigned int num_params)
230 return 0;
233 static inline void module_param_sysfs_remove(struct module *mod)
235 #endif
237 #endif /* _LINUX_MODULE_PARAMS_H */