2 * Register map access API - debugfs
4 * Copyright 2011 Wolfson Microelectronics plc
6 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #include <linux/slab.h>
14 #include <linux/mutex.h>
15 #include <linux/debugfs.h>
16 #include <linux/uaccess.h>
17 #include <linux/device.h>
18 #include <linux/list.h>
22 struct regmap_debugfs_node
{
25 struct list_head link
;
28 static unsigned int dummy_index
;
29 static struct dentry
*regmap_debugfs_root
;
30 static LIST_HEAD(regmap_debugfs_early_list
);
31 static DEFINE_MUTEX(regmap_debugfs_early_lock
);
33 /* Calculate the length of a fixed format */
34 static size_t regmap_calc_reg_len(int max_val
)
36 return snprintf(NULL
, 0, "%x", max_val
);
39 static ssize_t
regmap_name_read_file(struct file
*file
,
40 char __user
*user_buf
, size_t count
,
43 struct regmap
*map
= file
->private_data
;
44 const char *name
= "nodev";
48 buf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
52 if (map
->dev
&& map
->dev
->driver
)
53 name
= map
->dev
->driver
->name
;
55 ret
= snprintf(buf
, PAGE_SIZE
, "%s\n", name
);
61 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, ret
);
66 static const struct file_operations regmap_name_fops
= {
68 .read
= regmap_name_read_file
,
69 .llseek
= default_llseek
,
72 static void regmap_debugfs_free_dump_cache(struct regmap
*map
)
74 struct regmap_debugfs_off_cache
*c
;
76 while (!list_empty(&map
->debugfs_off_cache
)) {
77 c
= list_first_entry(&map
->debugfs_off_cache
,
78 struct regmap_debugfs_off_cache
,
85 static bool regmap_printable(struct regmap
*map
, unsigned int reg
)
87 if (regmap_precious(map
, reg
))
90 if (!regmap_readable(map
, reg
) && !regmap_cached(map
, reg
))
97 * Work out where the start offset maps into register numbers, bearing
98 * in mind that we suppress hidden registers.
100 static unsigned int regmap_debugfs_get_dump_start(struct regmap
*map
,
105 struct regmap_debugfs_off_cache
*c
= NULL
;
108 unsigned int fpos_offset
;
109 unsigned int reg_offset
;
111 /* Suppress the cache if we're using a subrange */
116 * If we don't have a cache build one so we don't have to do a
117 * linear scan each time.
119 mutex_lock(&map
->cache_lock
);
121 if (list_empty(&map
->debugfs_off_cache
)) {
122 for (; i
<= map
->max_register
; i
+= map
->reg_stride
) {
123 /* Skip unprinted registers, closing off cache entry */
124 if (!regmap_printable(map
, i
)) {
127 c
->max_reg
= i
- map
->reg_stride
;
128 list_add_tail(&c
->list
,
129 &map
->debugfs_off_cache
);
136 /* No cache entry? Start a new one */
138 c
= kzalloc(sizeof(*c
), GFP_KERNEL
);
140 regmap_debugfs_free_dump_cache(map
);
141 mutex_unlock(&map
->cache_lock
);
148 p
+= map
->debugfs_tot_len
;
152 /* Close the last entry off if we didn't scan beyond it */
155 c
->max_reg
= i
- map
->reg_stride
;
156 list_add_tail(&c
->list
,
157 &map
->debugfs_off_cache
);
161 * This should never happen; we return above if we fail to
162 * allocate and we should never be in this code if there are
163 * no registers at all.
165 WARN_ON(list_empty(&map
->debugfs_off_cache
));
168 /* Find the relevant block:offset */
169 list_for_each_entry(c
, &map
->debugfs_off_cache
, list
) {
170 if (from
>= c
->min
&& from
<= c
->max
) {
171 fpos_offset
= from
- c
->min
;
172 reg_offset
= fpos_offset
/ map
->debugfs_tot_len
;
173 *pos
= c
->min
+ (reg_offset
* map
->debugfs_tot_len
);
174 mutex_unlock(&map
->cache_lock
);
175 return c
->base_reg
+ (reg_offset
* map
->reg_stride
);
181 mutex_unlock(&map
->cache_lock
);
186 static inline void regmap_calc_tot_len(struct regmap
*map
,
187 void *buf
, size_t count
)
189 /* Calculate the length of a fixed format */
190 if (!map
->debugfs_tot_len
) {
191 map
->debugfs_reg_len
= regmap_calc_reg_len(map
->max_register
),
192 map
->debugfs_val_len
= 2 * map
->format
.val_bytes
;
193 map
->debugfs_tot_len
= map
->debugfs_reg_len
+
194 map
->debugfs_val_len
+ 3; /* : \n */
198 static ssize_t
regmap_read_debugfs(struct regmap
*map
, unsigned int from
,
199 unsigned int to
, char __user
*user_buf
,
200 size_t count
, loff_t
*ppos
)
207 unsigned int val
, start_reg
;
209 if (*ppos
< 0 || !count
)
212 buf
= kmalloc(count
, GFP_KERNEL
);
216 regmap_calc_tot_len(map
, buf
, count
);
218 /* Work out which register we're starting at */
219 start_reg
= regmap_debugfs_get_dump_start(map
, from
, *ppos
, &p
);
221 for (i
= start_reg
; i
<= to
; i
+= map
->reg_stride
) {
222 if (!regmap_readable(map
, i
) && !regmap_cached(map
, i
))
225 if (regmap_precious(map
, i
))
228 /* If we're in the region the user is trying to read */
230 /* ...but not beyond it */
231 if (buf_pos
+ map
->debugfs_tot_len
> count
)
234 /* Format the register */
235 snprintf(buf
+ buf_pos
, count
- buf_pos
, "%.*x: ",
236 map
->debugfs_reg_len
, i
- from
);
237 buf_pos
+= map
->debugfs_reg_len
+ 2;
239 /* Format the value, write all X if we can't read */
240 ret
= regmap_read(map
, i
, &val
);
242 snprintf(buf
+ buf_pos
, count
- buf_pos
,
243 "%.*x", map
->debugfs_val_len
, val
);
245 memset(buf
+ buf_pos
, 'X',
246 map
->debugfs_val_len
);
247 buf_pos
+= 2 * map
->format
.val_bytes
;
249 buf
[buf_pos
++] = '\n';
251 p
+= map
->debugfs_tot_len
;
256 if (copy_to_user(user_buf
, buf
, buf_pos
)) {
268 static ssize_t
regmap_map_read_file(struct file
*file
, char __user
*user_buf
,
269 size_t count
, loff_t
*ppos
)
271 struct regmap
*map
= file
->private_data
;
273 return regmap_read_debugfs(map
, 0, map
->max_register
, user_buf
,
277 #undef REGMAP_ALLOW_WRITE_DEBUGFS
278 #ifdef REGMAP_ALLOW_WRITE_DEBUGFS
280 * This can be dangerous especially when we have clients such as
281 * PMICs, therefore don't provide any real compile time configuration option
282 * for this feature, people who want to use this will need to modify
283 * the source code directly.
285 static ssize_t
regmap_map_write_file(struct file
*file
,
286 const char __user
*user_buf
,
287 size_t count
, loff_t
*ppos
)
292 unsigned long reg
, value
;
293 struct regmap
*map
= file
->private_data
;
296 buf_size
= min(count
, (sizeof(buf
)-1));
297 if (copy_from_user(buf
, user_buf
, buf_size
))
301 while (*start
== ' ')
303 reg
= simple_strtoul(start
, &start
, 16);
304 while (*start
== ' ')
306 if (kstrtoul(start
, 16, &value
))
309 /* Userspace has been fiddling around behind the kernel's back */
310 add_taint(TAINT_USER
, LOCKDEP_STILL_OK
);
312 ret
= regmap_write(map
, reg
, value
);
318 #define regmap_map_write_file NULL
321 static const struct file_operations regmap_map_fops
= {
323 .read
= regmap_map_read_file
,
324 .write
= regmap_map_write_file
,
325 .llseek
= default_llseek
,
328 static ssize_t
regmap_range_read_file(struct file
*file
, char __user
*user_buf
,
329 size_t count
, loff_t
*ppos
)
331 struct regmap_range_node
*range
= file
->private_data
;
332 struct regmap
*map
= range
->map
;
334 return regmap_read_debugfs(map
, range
->range_min
, range
->range_max
,
335 user_buf
, count
, ppos
);
338 static const struct file_operations regmap_range_fops
= {
340 .read
= regmap_range_read_file
,
341 .llseek
= default_llseek
,
344 static ssize_t
regmap_reg_ranges_read_file(struct file
*file
,
345 char __user
*user_buf
, size_t count
,
348 struct regmap
*map
= file
->private_data
;
349 struct regmap_debugfs_off_cache
*c
;
357 if (*ppos
< 0 || !count
)
360 buf
= kmalloc(count
, GFP_KERNEL
);
364 entry
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
370 /* While we are at it, build the register dump cache
371 * now so the read() operation on the `registers' file
372 * can benefit from using the cache. We do not care
373 * about the file position information that is contained
374 * in the cache, just about the actual register blocks */
375 regmap_calc_tot_len(map
, buf
, count
);
376 regmap_debugfs_get_dump_start(map
, 0, *ppos
, &p
);
378 /* Reset file pointer as the fixed-format of the `registers'
379 * file is not compatible with the `range' file */
381 mutex_lock(&map
->cache_lock
);
382 list_for_each_entry(c
, &map
->debugfs_off_cache
, list
) {
383 entry_len
= snprintf(entry
, PAGE_SIZE
, "%x-%x\n",
384 c
->base_reg
, c
->max_reg
);
386 if (buf_pos
+ entry_len
> count
)
388 memcpy(buf
+ buf_pos
, entry
, entry_len
);
389 buf_pos
+= entry_len
;
393 mutex_unlock(&map
->cache_lock
);
398 if (copy_to_user(user_buf
, buf
, buf_pos
)) {
409 static const struct file_operations regmap_reg_ranges_fops
= {
411 .read
= regmap_reg_ranges_read_file
,
412 .llseek
= default_llseek
,
415 static int regmap_access_show(struct seq_file
*s
, void *ignored
)
417 struct regmap
*map
= s
->private;
420 reg_len
= regmap_calc_reg_len(map
->max_register
);
422 for (i
= 0; i
<= map
->max_register
; i
+= map
->reg_stride
) {
423 /* Ignore registers which are neither readable nor writable */
424 if (!regmap_readable(map
, i
) && !regmap_writeable(map
, i
))
427 /* Format the register */
428 seq_printf(s
, "%.*x: %c %c %c %c\n", reg_len
, i
,
429 regmap_readable(map
, i
) ? 'y' : 'n',
430 regmap_writeable(map
, i
) ? 'y' : 'n',
431 regmap_volatile(map
, i
) ? 'y' : 'n',
432 regmap_precious(map
, i
) ? 'y' : 'n');
438 static int access_open(struct inode
*inode
, struct file
*file
)
440 return single_open(file
, regmap_access_show
, inode
->i_private
);
443 static const struct file_operations regmap_access_fops
= {
447 .release
= single_release
,
450 static ssize_t
regmap_cache_only_write_file(struct file
*file
,
451 const char __user
*user_buf
,
452 size_t count
, loff_t
*ppos
)
454 struct regmap
*map
= container_of(file
->private_data
,
455 struct regmap
, cache_only
);
457 bool was_enabled
, require_sync
= false;
460 map
->lock(map
->lock_arg
);
462 was_enabled
= map
->cache_only
;
464 result
= debugfs_write_file_bool(file
, user_buf
, count
, ppos
);
466 map
->unlock(map
->lock_arg
);
470 if (map
->cache_only
&& !was_enabled
) {
471 dev_warn(map
->dev
, "debugfs cache_only=Y forced\n");
472 add_taint(TAINT_USER
, LOCKDEP_STILL_OK
);
473 } else if (!map
->cache_only
&& was_enabled
) {
474 dev_warn(map
->dev
, "debugfs cache_only=N forced: syncing cache\n");
478 map
->unlock(map
->lock_arg
);
481 err
= regcache_sync(map
);
483 dev_err(map
->dev
, "Failed to sync cache %d\n", err
);
489 static const struct file_operations regmap_cache_only_fops
= {
491 .read
= debugfs_read_file_bool
,
492 .write
= regmap_cache_only_write_file
,
495 static ssize_t
regmap_cache_bypass_write_file(struct file
*file
,
496 const char __user
*user_buf
,
497 size_t count
, loff_t
*ppos
)
499 struct regmap
*map
= container_of(file
->private_data
,
500 struct regmap
, cache_bypass
);
504 map
->lock(map
->lock_arg
);
506 was_enabled
= map
->cache_bypass
;
508 result
= debugfs_write_file_bool(file
, user_buf
, count
, ppos
);
512 if (map
->cache_bypass
&& !was_enabled
) {
513 dev_warn(map
->dev
, "debugfs cache_bypass=Y forced\n");
514 add_taint(TAINT_USER
, LOCKDEP_STILL_OK
);
515 } else if (!map
->cache_bypass
&& was_enabled
) {
516 dev_warn(map
->dev
, "debugfs cache_bypass=N forced\n");
520 map
->unlock(map
->lock_arg
);
525 static const struct file_operations regmap_cache_bypass_fops
= {
527 .read
= debugfs_read_file_bool
,
528 .write
= regmap_cache_bypass_write_file
,
531 void regmap_debugfs_init(struct regmap
*map
, const char *name
)
533 struct rb_node
*next
;
534 struct regmap_range_node
*range_node
;
535 const char *devname
= "dummy";
538 * Userspace can initiate reads from the hardware over debugfs.
539 * Normally internal regmap structures and buffers are protected with
540 * a mutex or a spinlock, but if the regmap owner decided to disable
541 * all locking mechanisms, this is no longer the case. For safety:
542 * don't create the debugfs entries if locking is disabled.
544 if (map
->debugfs_disable
) {
545 dev_dbg(map
->dev
, "regmap locking disabled - not creating debugfs entries\n");
549 /* If we don't have the debugfs root yet, postpone init */
550 if (!regmap_debugfs_root
) {
551 struct regmap_debugfs_node
*node
;
552 node
= kzalloc(sizeof(*node
), GFP_KERNEL
);
557 mutex_lock(®map_debugfs_early_lock
);
558 list_add(&node
->link
, ®map_debugfs_early_list
);
559 mutex_unlock(®map_debugfs_early_lock
);
563 INIT_LIST_HEAD(&map
->debugfs_off_cache
);
564 mutex_init(&map
->cache_lock
);
567 devname
= dev_name(map
->dev
);
570 map
->debugfs_name
= kasprintf(GFP_KERNEL
, "%s-%s",
572 name
= map
->debugfs_name
;
577 if (!strcmp(name
, "dummy")) {
578 map
->debugfs_name
= kasprintf(GFP_KERNEL
, "dummy%d",
580 name
= map
->debugfs_name
;
584 map
->debugfs
= debugfs_create_dir(name
, regmap_debugfs_root
);
587 "Failed to create %s debugfs directory\n", name
);
589 kfree(map
->debugfs_name
);
590 map
->debugfs_name
= NULL
;
594 debugfs_create_file("name", 0400, map
->debugfs
,
595 map
, ®map_name_fops
);
597 debugfs_create_file("range", 0400, map
->debugfs
,
598 map
, ®map_reg_ranges_fops
);
600 if (map
->max_register
|| regmap_readable(map
, 0)) {
601 umode_t registers_mode
;
603 #if defined(REGMAP_ALLOW_WRITE_DEBUGFS)
604 registers_mode
= 0600;
606 registers_mode
= 0400;
609 debugfs_create_file("registers", registers_mode
, map
->debugfs
,
610 map
, ®map_map_fops
);
611 debugfs_create_file("access", 0400, map
->debugfs
,
612 map
, ®map_access_fops
);
615 if (map
->cache_type
) {
616 debugfs_create_file("cache_only", 0600, map
->debugfs
,
617 &map
->cache_only
, ®map_cache_only_fops
);
618 debugfs_create_bool("cache_dirty", 0400, map
->debugfs
,
620 debugfs_create_file("cache_bypass", 0600, map
->debugfs
,
622 ®map_cache_bypass_fops
);
625 next
= rb_first(&map
->range_tree
);
627 range_node
= rb_entry(next
, struct regmap_range_node
, node
);
629 if (range_node
->name
)
630 debugfs_create_file(range_node
->name
, 0400,
631 map
->debugfs
, range_node
,
634 next
= rb_next(&range_node
->node
);
637 if (map
->cache_ops
&& map
->cache_ops
->debugfs_init
)
638 map
->cache_ops
->debugfs_init(map
);
641 void regmap_debugfs_exit(struct regmap
*map
)
644 debugfs_remove_recursive(map
->debugfs
);
645 mutex_lock(&map
->cache_lock
);
646 regmap_debugfs_free_dump_cache(map
);
647 mutex_unlock(&map
->cache_lock
);
648 kfree(map
->debugfs_name
);
650 struct regmap_debugfs_node
*node
, *tmp
;
652 mutex_lock(®map_debugfs_early_lock
);
653 list_for_each_entry_safe(node
, tmp
, ®map_debugfs_early_list
,
655 if (node
->map
== map
) {
656 list_del(&node
->link
);
660 mutex_unlock(®map_debugfs_early_lock
);
664 void regmap_debugfs_initcall(void)
666 struct regmap_debugfs_node
*node
, *tmp
;
668 regmap_debugfs_root
= debugfs_create_dir("regmap", NULL
);
669 if (!regmap_debugfs_root
) {
670 pr_warn("regmap: Failed to create debugfs root\n");
674 mutex_lock(®map_debugfs_early_lock
);
675 list_for_each_entry_safe(node
, tmp
, ®map_debugfs_early_list
, link
) {
676 regmap_debugfs_init(node
->map
, node
->name
);
677 list_del(&node
->link
);
680 mutex_unlock(®map_debugfs_early_lock
);