1 #include <linux/capability.h>
2 #include <linux/seq_file.h>
3 #include <linux/uaccess.h>
4 #include <linux/proc_fs.h>
5 #include <linux/module.h>
6 #include <linux/ctype.h>
7 #include <linux/init.h>
15 #define FILE_FCOUNT(f) (((struct seq_file *)((f)->private_data))->private)
17 static const char *const mtrr_strings
[MTRR_NUM_TYPES
] =
20 "write-combining", /* 1 */
23 "write-through", /* 4 */
24 "write-protect", /* 5 */
28 const char *mtrr_attrib_to_str(int x
)
30 return (x
<= 6) ? mtrr_strings
[x
] : "?";
36 mtrr_file_add(unsigned long base
, unsigned long size
,
37 unsigned int type
, bool increment
, struct file
*file
, int page
)
39 unsigned int *fcount
= FILE_FCOUNT(file
);
44 fcount
= kzalloc(max
* sizeof *fcount
, GFP_KERNEL
);
47 FILE_FCOUNT(file
) = fcount
;
50 if ((base
& (PAGE_SIZE
- 1)) || (size
& (PAGE_SIZE
- 1)))
55 reg
= mtrr_add_page(base
, size
, type
, true);
62 mtrr_file_del(unsigned long base
, unsigned long size
,
63 struct file
*file
, int page
)
65 unsigned int *fcount
= FILE_FCOUNT(file
);
69 if ((base
& (PAGE_SIZE
- 1)) || (size
& (PAGE_SIZE
- 1)))
74 reg
= mtrr_del_page(-1, base
, size
);
86 * seq_file can seek but we ignore it.
88 * Format of control line:
89 * "base=%Lx size=%Lx type=%s" or "disable=%d"
92 mtrr_write(struct file
*file
, const char __user
*buf
, size_t len
, loff_t
* ppos
)
96 unsigned long long base
, size
;
101 if (!capable(CAP_SYS_ADMIN
))
106 memset(line
, 0, LINE_SIZE
);
109 if (copy_from_user(line
, buf
, len
- 1))
112 linelen
= strlen(line
);
113 ptr
= line
+ linelen
- 1;
114 if (linelen
&& *ptr
== '\n')
117 if (!strncmp(line
, "disable=", 8)) {
118 reg
= simple_strtoul(line
+ 8, &ptr
, 0);
119 err
= mtrr_del_page(reg
, 0, 0);
125 if (strncmp(line
, "base=", 5))
128 base
= simple_strtoull(line
+ 5, &ptr
, 0);
129 for (; isspace(*ptr
); ++ptr
)
132 if (strncmp(ptr
, "size=", 5))
135 size
= simple_strtoull(ptr
+ 5, &ptr
, 0);
136 if ((base
& 0xfff) || (size
& 0xfff))
138 for (; isspace(*ptr
); ++ptr
)
141 if (strncmp(ptr
, "type=", 5))
144 for (; isspace(*ptr
); ++ptr
)
147 for (i
= 0; i
< MTRR_NUM_TYPES
; ++i
) {
148 if (strcmp(ptr
, mtrr_strings
[i
]))
152 err
= mtrr_add_page((unsigned long)base
, (unsigned long)size
, i
, true);
161 mtrr_ioctl(struct file
*file
, unsigned int cmd
, unsigned long __arg
)
166 struct mtrr_sentry sentry
;
167 struct mtrr_gentry gentry
;
168 void __user
*arg
= (void __user
*) __arg
;
171 case MTRRIOC_ADD_ENTRY
:
172 case MTRRIOC_SET_ENTRY
:
173 case MTRRIOC_DEL_ENTRY
:
174 case MTRRIOC_KILL_ENTRY
:
175 case MTRRIOC_ADD_PAGE_ENTRY
:
176 case MTRRIOC_SET_PAGE_ENTRY
:
177 case MTRRIOC_DEL_PAGE_ENTRY
:
178 case MTRRIOC_KILL_PAGE_ENTRY
:
179 if (copy_from_user(&sentry
, arg
, sizeof sentry
))
182 case MTRRIOC_GET_ENTRY
:
183 case MTRRIOC_GET_PAGE_ENTRY
:
184 if (copy_from_user(&gentry
, arg
, sizeof gentry
))
188 case MTRRIOC32_ADD_ENTRY
:
189 case MTRRIOC32_SET_ENTRY
:
190 case MTRRIOC32_DEL_ENTRY
:
191 case MTRRIOC32_KILL_ENTRY
:
192 case MTRRIOC32_ADD_PAGE_ENTRY
:
193 case MTRRIOC32_SET_PAGE_ENTRY
:
194 case MTRRIOC32_DEL_PAGE_ENTRY
:
195 case MTRRIOC32_KILL_PAGE_ENTRY
: {
196 struct mtrr_sentry32 __user
*s32
;
198 s32
= (struct mtrr_sentry32 __user
*)__arg
;
199 err
= get_user(sentry
.base
, &s32
->base
);
200 err
|= get_user(sentry
.size
, &s32
->size
);
201 err
|= get_user(sentry
.type
, &s32
->type
);
206 case MTRRIOC32_GET_ENTRY
:
207 case MTRRIOC32_GET_PAGE_ENTRY
: {
208 struct mtrr_gentry32 __user
*g32
;
210 g32
= (struct mtrr_gentry32 __user
*)__arg
;
211 err
= get_user(gentry
.regnum
, &g32
->regnum
);
212 err
|= get_user(gentry
.base
, &g32
->base
);
213 err
|= get_user(gentry
.size
, &g32
->size
);
214 err
|= get_user(gentry
.type
, &g32
->type
);
225 case MTRRIOC_ADD_ENTRY
:
227 case MTRRIOC32_ADD_ENTRY
:
229 if (!capable(CAP_SYS_ADMIN
))
232 mtrr_file_add(sentry
.base
, sentry
.size
, sentry
.type
, true,
235 case MTRRIOC_SET_ENTRY
:
237 case MTRRIOC32_SET_ENTRY
:
239 if (!capable(CAP_SYS_ADMIN
))
241 err
= mtrr_add(sentry
.base
, sentry
.size
, sentry
.type
, false);
243 case MTRRIOC_DEL_ENTRY
:
245 case MTRRIOC32_DEL_ENTRY
:
247 if (!capable(CAP_SYS_ADMIN
))
249 err
= mtrr_file_del(sentry
.base
, sentry
.size
, file
, 0);
251 case MTRRIOC_KILL_ENTRY
:
253 case MTRRIOC32_KILL_ENTRY
:
255 if (!capable(CAP_SYS_ADMIN
))
257 err
= mtrr_del(-1, sentry
.base
, sentry
.size
);
259 case MTRRIOC_GET_ENTRY
:
261 case MTRRIOC32_GET_ENTRY
:
263 if (gentry
.regnum
>= num_var_ranges
)
265 mtrr_if
->get(gentry
.regnum
, &gentry
.base
, &size
, &type
);
267 /* Hide entries that go above 4GB */
268 if (gentry
.base
+ size
- 1 >= (1UL << (8 * sizeof(gentry
.size
) - PAGE_SHIFT
))
269 || size
>= (1UL << (8 * sizeof(gentry
.size
) - PAGE_SHIFT
)))
270 gentry
.base
= gentry
.size
= gentry
.type
= 0;
272 gentry
.base
<<= PAGE_SHIFT
;
273 gentry
.size
= size
<< PAGE_SHIFT
;
278 case MTRRIOC_ADD_PAGE_ENTRY
:
280 case MTRRIOC32_ADD_PAGE_ENTRY
:
282 if (!capable(CAP_SYS_ADMIN
))
285 mtrr_file_add(sentry
.base
, sentry
.size
, sentry
.type
, true,
288 case MTRRIOC_SET_PAGE_ENTRY
:
290 case MTRRIOC32_SET_PAGE_ENTRY
:
292 if (!capable(CAP_SYS_ADMIN
))
295 mtrr_add_page(sentry
.base
, sentry
.size
, sentry
.type
, false);
297 case MTRRIOC_DEL_PAGE_ENTRY
:
299 case MTRRIOC32_DEL_PAGE_ENTRY
:
301 if (!capable(CAP_SYS_ADMIN
))
303 err
= mtrr_file_del(sentry
.base
, sentry
.size
, file
, 1);
305 case MTRRIOC_KILL_PAGE_ENTRY
:
307 case MTRRIOC32_KILL_PAGE_ENTRY
:
309 if (!capable(CAP_SYS_ADMIN
))
311 err
= mtrr_del_page(-1, sentry
.base
, sentry
.size
);
313 case MTRRIOC_GET_PAGE_ENTRY
:
315 case MTRRIOC32_GET_PAGE_ENTRY
:
317 if (gentry
.regnum
>= num_var_ranges
)
319 mtrr_if
->get(gentry
.regnum
, &gentry
.base
, &size
, &type
);
320 /* Hide entries that would overflow */
321 if (size
!= (__typeof__(gentry
.size
))size
)
322 gentry
.base
= gentry
.size
= gentry
.type
= 0;
334 case MTRRIOC_GET_ENTRY
:
335 case MTRRIOC_GET_PAGE_ENTRY
:
336 if (copy_to_user(arg
, &gentry
, sizeof gentry
))
340 case MTRRIOC32_GET_ENTRY
:
341 case MTRRIOC32_GET_PAGE_ENTRY
: {
342 struct mtrr_gentry32 __user
*g32
;
344 g32
= (struct mtrr_gentry32 __user
*)__arg
;
345 err
= put_user(gentry
.base
, &g32
->base
);
346 err
|= put_user(gentry
.size
, &g32
->size
);
347 err
|= put_user(gentry
.regnum
, &g32
->regnum
);
348 err
|= put_user(gentry
.type
, &g32
->type
);
356 static int mtrr_close(struct inode
*ino
, struct file
*file
)
358 unsigned int *fcount
= FILE_FCOUNT(file
);
361 if (fcount
!= NULL
) {
362 max
= num_var_ranges
;
363 for (i
= 0; i
< max
; ++i
) {
364 while (fcount
[i
] > 0) {
370 FILE_FCOUNT(file
) = NULL
;
372 return single_release(ino
, file
);
375 static int mtrr_seq_show(struct seq_file
*seq
, void *offset
);
377 static int mtrr_open(struct inode
*inode
, struct file
*file
)
383 return single_open(file
, mtrr_seq_show
, NULL
);
386 static const struct file_operations mtrr_fops
= {
387 .owner
= THIS_MODULE
,
392 .unlocked_ioctl
= mtrr_ioctl
,
393 .compat_ioctl
= mtrr_ioctl
,
394 .release
= mtrr_close
,
397 static int mtrr_seq_show(struct seq_file
*seq
, void *offset
)
402 unsigned long base
, size
;
405 max
= num_var_ranges
;
406 for (i
= 0; i
< max
; i
++) {
407 mtrr_if
->get(i
, &base
, &size
, &type
);
409 mtrr_usage_table
[i
] = 0;
412 if (size
< (0x100000 >> PAGE_SHIFT
)) {
415 size
<<= PAGE_SHIFT
- 10;
418 size
>>= 20 - PAGE_SHIFT
;
420 /* Base can be > 32bit */
421 len
+= seq_printf(seq
, "reg%02i: base=0x%06lx000 "
422 "(%5luMB), size=%5lu%cB, count=%d: %s\n",
423 i
, base
, base
>> (20 - PAGE_SHIFT
), size
,
424 factor
, mtrr_usage_table
[i
],
425 mtrr_attrib_to_str(type
));
430 static int __init
mtrr_if_init(void)
432 struct cpuinfo_x86
*c
= &boot_cpu_data
;
434 if ((!cpu_has(c
, X86_FEATURE_MTRR
)) &&
435 (!cpu_has(c
, X86_FEATURE_K6_MTRR
)) &&
436 (!cpu_has(c
, X86_FEATURE_CYRIX_ARR
)) &&
437 (!cpu_has(c
, X86_FEATURE_CENTAUR_MCR
)))
440 proc_create("mtrr", S_IWUSR
| S_IRUGO
, NULL
, &mtrr_fops
);
443 arch_initcall(mtrr_if_init
);
444 #endif /* CONFIG_PROC_FS */