2 * Based on arch/arm/kernel/atags_proc.c
6 #include <linux/init.h>
7 #include <linux/printk.h>
8 #include <linux/proc_fs.h>
9 #include <linux/slab.h>
10 #include <linux/string.h>
12 #include <asm/bootinfo.h>
13 #include <asm/byteorder.h>
16 static char bootinfo_tmp
[1536] __initdata
;
18 static void *bootinfo_copy
;
19 static size_t bootinfo_size
;
21 static ssize_t
bootinfo_read(struct file
*file
, char __user
*buf
,
22 size_t count
, loff_t
*ppos
)
24 return simple_read_from_buffer(buf
, count
, ppos
, bootinfo_copy
,
28 static const struct file_operations bootinfo_fops
= {
29 .read
= bootinfo_read
,
30 .llseek
= default_llseek
,
33 void __init
save_bootinfo(const struct bi_record
*bi
)
35 const void *start
= bi
;
36 size_t size
= sizeof(bi
->tag
);
38 while (be16_to_cpu(bi
->tag
) != BI_LAST
) {
39 uint16_t n
= be16_to_cpu(bi
->size
);
41 bi
= (struct bi_record
*)((unsigned long)bi
+ n
);
44 if (size
> sizeof(bootinfo_tmp
)) {
45 pr_err("Cannot save %zu bytes of bootinfo\n", size
);
49 pr_info("Saving %zu bytes of bootinfo\n", size
);
50 memcpy(bootinfo_tmp
, start
, size
);
54 static int __init
init_bootinfo_procfs(void)
57 * This cannot go into save_bootinfo() because kmalloc and proc don't
58 * work yet when it is called.
60 struct proc_dir_entry
*pde
;
65 bootinfo_copy
= kmemdup(bootinfo_tmp
, bootinfo_size
, GFP_KERNEL
);
69 pde
= proc_create_data("bootinfo", 0400, NULL
, &bootinfo_fops
, NULL
);
78 arch_initcall(init_bootinfo_procfs
);