diff options
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/core/debugfs.c | 35 |
1 files changed, 33 insertions, 2 deletions
diff --git a/drivers/mmc/core/debugfs.c b/drivers/mmc/core/debugfs.c index 46bc6d7551a3..eed1405fd742 100644 --- a/drivers/mmc/core/debugfs.c +++ b/drivers/mmc/core/debugfs.c | |||
@@ -134,6 +134,33 @@ static const struct file_operations mmc_ios_fops = { | |||
134 | .release = single_release, | 134 | .release = single_release, |
135 | }; | 135 | }; |
136 | 136 | ||
137 | static int mmc_clock_opt_get(void *data, u64 *val) | ||
138 | { | ||
139 | struct mmc_host *host = data; | ||
140 | |||
141 | *val = host->ios.clock; | ||
142 | |||
143 | return 0; | ||
144 | } | ||
145 | |||
146 | static int mmc_clock_opt_set(void *data, u64 val) | ||
147 | { | ||
148 | struct mmc_host *host = data; | ||
149 | |||
150 | /* We need this check due to input value is u64 */ | ||
151 | if (val > host->f_max) | ||
152 | return -EINVAL; | ||
153 | |||
154 | mmc_claim_host(host); | ||
155 | mmc_set_clock(host, (unsigned int) val); | ||
156 | mmc_release_host(host); | ||
157 | |||
158 | return 0; | ||
159 | } | ||
160 | |||
161 | DEFINE_SIMPLE_ATTRIBUTE(mmc_clock_fops, mmc_clock_opt_get, mmc_clock_opt_set, | ||
162 | "%llu\n"); | ||
163 | |||
137 | void mmc_add_host_debugfs(struct mmc_host *host) | 164 | void mmc_add_host_debugfs(struct mmc_host *host) |
138 | { | 165 | { |
139 | struct dentry *root; | 166 | struct dentry *root; |
@@ -150,11 +177,15 @@ void mmc_add_host_debugfs(struct mmc_host *host) | |||
150 | host->debugfs_root = root; | 177 | host->debugfs_root = root; |
151 | 178 | ||
152 | if (!debugfs_create_file("ios", S_IRUSR, root, host, &mmc_ios_fops)) | 179 | if (!debugfs_create_file("ios", S_IRUSR, root, host, &mmc_ios_fops)) |
153 | goto err_ios; | 180 | goto err_node; |
181 | |||
182 | if (!debugfs_create_file("clock", S_IRUSR | S_IWUSR, root, host, | ||
183 | &mmc_clock_fops)) | ||
184 | goto err_node; | ||
154 | 185 | ||
155 | return; | 186 | return; |
156 | 187 | ||
157 | err_ios: | 188 | err_node: |
158 | debugfs_remove_recursive(root); | 189 | debugfs_remove_recursive(root); |
159 | host->debugfs_root = NULL; | 190 | host->debugfs_root = NULL; |
160 | err_root: | 191 | err_root: |