hfsplus: add an ioctl to bless files
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / include / linux / debugfs.h
CommitLineData
1da177e4
LT
1/*
2 * debugfs.h - a tiny little debug file system
3 *
4 * Copyright (C) 2004 Greg Kroah-Hartman <greg@kroah.com>
5 * Copyright (C) 2004 IBM Inc.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License version
9 * 2 as published by the Free Software Foundation.
10 *
11 * debugfs is for people to use instead of /proc or /sys.
55dff495 12 * See Documentation/DocBook/filesystems for more details.
1da177e4
LT
13 */
14
15#ifndef _DEBUGFS_H_
16#define _DEBUGFS_H_
17
18#include <linux/fs.h>
1a087c6a 19#include <linux/seq_file.h>
1da177e4 20
a7a76cef
RD
21#include <linux/types.h>
22
23struct file_operations;
24
dd308bc3
ME
25struct debugfs_blob_wrapper {
26 void *data;
27 unsigned long size;
28};
29
1a087c6a
AR
30struct debugfs_reg32 {
31 char *name;
32 unsigned long offset;
33};
34
35struct debugfs_regset32 {
36 struct debugfs_reg32 *regs;
37 int nregs;
38 void __iomem *base;
39};
40
ae79cdaa 41extern struct dentry *arch_debugfs_dir;
42
1da177e4 43#if defined(CONFIG_DEBUG_FS)
3634634e
HH
44
45/* declared over in file.c */
46extern const struct file_operations debugfs_file_operations;
47extern const struct inode_operations debugfs_link_operations;
48
f4ae40a6 49struct dentry *debugfs_create_file(const char *name, umode_t mode,
1da177e4 50 struct dentry *parent, void *data,
99ac48f5 51 const struct file_operations *fops);
1da177e4
LT
52
53struct dentry *debugfs_create_dir(const char *name, struct dentry *parent);
54
66f54963
PO
55struct dentry *debugfs_create_symlink(const char *name, struct dentry *parent,
56 const char *dest);
57
1da177e4 58void debugfs_remove(struct dentry *dentry);
9505e637 59void debugfs_remove_recursive(struct dentry *dentry);
1da177e4 60
cfc94cdf
JK
61struct dentry *debugfs_rename(struct dentry *old_dir, struct dentry *old_dentry,
62 struct dentry *new_dir, const char *new_name);
63
f4ae40a6 64struct dentry *debugfs_create_u8(const char *name, umode_t mode,
1da177e4 65 struct dentry *parent, u8 *value);
f4ae40a6 66struct dentry *debugfs_create_u16(const char *name, umode_t mode,
1da177e4 67 struct dentry *parent, u16 *value);
f4ae40a6 68struct dentry *debugfs_create_u32(const char *name, umode_t mode,
1da177e4 69 struct dentry *parent, u32 *value);
f4ae40a6 70struct dentry *debugfs_create_u64(const char *name, umode_t mode,
8447891f 71 struct dentry *parent, u64 *value);
f4ae40a6 72struct dentry *debugfs_create_x8(const char *name, umode_t mode,
2ebefc50 73 struct dentry *parent, u8 *value);
f4ae40a6 74struct dentry *debugfs_create_x16(const char *name, umode_t mode,
2ebefc50 75 struct dentry *parent, u16 *value);
f4ae40a6 76struct dentry *debugfs_create_x32(const char *name, umode_t mode,
2ebefc50 77 struct dentry *parent, u32 *value);
f4ae40a6 78struct dentry *debugfs_create_x64(const char *name, umode_t mode,
15b0beaa 79 struct dentry *parent, u64 *value);
f4ae40a6 80struct dentry *debugfs_create_size_t(const char *name, umode_t mode,
5e078787 81 struct dentry *parent, size_t *value);
f4ae40a6 82struct dentry *debugfs_create_bool(const char *name, umode_t mode,
1da177e4
LT
83 struct dentry *parent, u32 *value);
84
f4ae40a6 85struct dentry *debugfs_create_blob(const char *name, umode_t mode,
dd308bc3
ME
86 struct dentry *parent,
87 struct debugfs_blob_wrapper *blob);
c0f92ba9 88
1a087c6a
AR
89struct dentry *debugfs_create_regset32(const char *name, mode_t mode,
90 struct dentry *parent,
91 struct debugfs_regset32 *regset);
92
8ee4dd9f 93int debugfs_print_regs32(struct seq_file *s, const struct debugfs_reg32 *regs,
1a087c6a
AR
94 int nregs, void __iomem *base, char *prefix);
95
c0f92ba9
FW
96bool debugfs_initialized(void);
97
1da177e4 98#else
a7a76cef
RD
99
100#include <linux/err.h>
101
1da177e4
LT
102/*
103 * We do not return NULL from these functions if CONFIG_DEBUG_FS is not enabled
104 * so users have a chance to detect if there was a real error or not. We don't
105 * want to duplicate the design decision mistakes of procfs and devfs again.
106 */
107
f4ae40a6 108static inline struct dentry *debugfs_create_file(const char *name, umode_t mode,
bde11d79
JD
109 struct dentry *parent, void *data,
110 const struct file_operations *fops)
1da177e4
LT
111{
112 return ERR_PTR(-ENODEV);
113}
114
115static inline struct dentry *debugfs_create_dir(const char *name,
116 struct dentry *parent)
117{
118 return ERR_PTR(-ENODEV);
119}
120
66f54963
PO
121static inline struct dentry *debugfs_create_symlink(const char *name,
122 struct dentry *parent,
123 const char *dest)
124{
125 return ERR_PTR(-ENODEV);
126}
127
1da177e4
LT
128static inline void debugfs_remove(struct dentry *dentry)
129{ }
130
9505e637
HS
131static inline void debugfs_remove_recursive(struct dentry *dentry)
132{ }
133
cfc94cdf
JK
134static inline struct dentry *debugfs_rename(struct dentry *old_dir, struct dentry *old_dentry,
135 struct dentry *new_dir, char *new_name)
136{
137 return ERR_PTR(-ENODEV);
138}
139
f4ae40a6 140static inline struct dentry *debugfs_create_u8(const char *name, umode_t mode,
1da177e4
LT
141 struct dentry *parent,
142 u8 *value)
143{
144 return ERR_PTR(-ENODEV);
145}
146
f4ae40a6 147static inline struct dentry *debugfs_create_u16(const char *name, umode_t mode,
1da177e4 148 struct dentry *parent,
7b558637 149 u16 *value)
1da177e4
LT
150{
151 return ERR_PTR(-ENODEV);
152}
153
f4ae40a6 154static inline struct dentry *debugfs_create_u32(const char *name, umode_t mode,
1da177e4 155 struct dentry *parent,
7b558637 156 u32 *value)
1da177e4
LT
157{
158 return ERR_PTR(-ENODEV);
159}
160
f4ae40a6 161static inline struct dentry *debugfs_create_u64(const char *name, umode_t mode,
8447891f
ME
162 struct dentry *parent,
163 u64 *value)
164{
165 return ERR_PTR(-ENODEV);
166}
167
f4ae40a6 168static inline struct dentry *debugfs_create_x8(const char *name, umode_t mode,
2ebefc50
RG
169 struct dentry *parent,
170 u8 *value)
171{
172 return ERR_PTR(-ENODEV);
173}
174
f4ae40a6 175static inline struct dentry *debugfs_create_x16(const char *name, umode_t mode,
2ebefc50
RG
176 struct dentry *parent,
177 u16 *value)
178{
179 return ERR_PTR(-ENODEV);
180}
181
f4ae40a6 182static inline struct dentry *debugfs_create_x32(const char *name, umode_t mode,
2ebefc50
RG
183 struct dentry *parent,
184 u32 *value)
185{
186 return ERR_PTR(-ENODEV);
187}
188
f4ae40a6 189static inline struct dentry *debugfs_create_size_t(const char *name, umode_t mode,
8adb711f
IPG
190 struct dentry *parent,
191 size_t *value)
192{
193 return ERR_PTR(-ENODEV);
194}
195
f4ae40a6 196static inline struct dentry *debugfs_create_bool(const char *name, umode_t mode,
1da177e4 197 struct dentry *parent,
7b558637 198 u32 *value)
1da177e4
LT
199{
200 return ERR_PTR(-ENODEV);
201}
202
f4ae40a6 203static inline struct dentry *debugfs_create_blob(const char *name, umode_t mode,
dd308bc3
ME
204 struct dentry *parent,
205 struct debugfs_blob_wrapper *blob)
206{
207 return ERR_PTR(-ENODEV);
208}
209
1a087c6a
AR
210static inline struct dentry *debugfs_create_regset32(const char *name,
211 mode_t mode, struct dentry *parent,
212 struct debugfs_regset32 *regset)
213{
214 return ERR_PTR(-ENODEV);
215}
216
c0f92ba9
FW
217static inline bool debugfs_initialized(void)
218{
219 return false;
220}
221
1da177e4
LT
222#endif
223
224#endif