1 // SPDX-License-Identifier: GPL-2.0-only
3 * Architecture specific debugfs files
5 * Copyright (C) 2007, Intel Corp.
8 #include <linux/debugfs.h>
9 #include <linux/uaccess.h>
10 #include <linux/export.h>
11 #include <linux/slab.h>
12 #include <linux/init.h>
13 #include <linux/stat.h>
17 #include <asm/setup.h>
19 struct dentry *arch_debugfs_dir;
20 EXPORT_SYMBOL(arch_debugfs_dir);
22 #ifdef CONFIG_DEBUG_BOOT_PARAMS
23 struct setup_data_node {
29 static ssize_t setup_data_read(struct file *file, char __user *user_buf,
30 size_t count, loff_t *ppos)
32 struct setup_data_node *node = file->private_data;
44 if (count > node->len - pos)
45 count = node->len - pos;
47 pa = node->paddr + sizeof(struct setup_data) + pos;
48 p = memremap(pa, count, MEMREMAP_WB);
52 remain = copy_to_user(user_buf, p, count);
64 static const struct file_operations fops_setup_data = {
65 .read = setup_data_read,
67 .llseek = default_llseek,
71 create_setup_data_node(struct dentry *parent, int no,
72 struct setup_data_node *node)
77 sprintf(buf, "%d", no);
78 d = debugfs_create_dir(buf, parent);
80 debugfs_create_x32("type", S_IRUGO, d, &node->type);
81 debugfs_create_file("data", S_IRUGO, d, node, &fops_setup_data);
84 static int __init create_setup_data_nodes(struct dentry *parent)
86 struct setup_data_node *node;
87 struct setup_data *data;
93 d = debugfs_create_dir("setup_data", parent);
95 pa_data = boot_params.hdr.setup_data;
98 node = kmalloc(sizeof(*node), GFP_KERNEL);
104 data = memremap(pa_data, sizeof(*data), MEMREMAP_WB);
111 node->paddr = pa_data;
112 node->type = data->type;
113 node->len = data->len;
114 create_setup_data_node(d, no, node);
115 pa_data = data->next;
124 debugfs_remove_recursive(d);
128 static struct debugfs_blob_wrapper boot_params_blob = {
129 .data = &boot_params,
130 .size = sizeof(boot_params),
133 static int __init boot_params_kdebugfs_init(void)
138 dbp = debugfs_create_dir("boot_params", arch_debugfs_dir);
140 debugfs_create_x16("version", S_IRUGO, dbp, &boot_params.hdr.version);
141 debugfs_create_blob("data", S_IRUGO, dbp, &boot_params_blob);
143 error = create_setup_data_nodes(dbp);
145 debugfs_remove_recursive(dbp);
149 #endif /* CONFIG_DEBUG_BOOT_PARAMS */
151 static int __init arch_kdebugfs_init(void)
155 arch_debugfs_dir = debugfs_create_dir("x86", NULL);
157 #ifdef CONFIG_DEBUG_BOOT_PARAMS
158 error = boot_params_kdebugfs_init();
163 arch_initcall(arch_kdebugfs_init);