blob: fcbc95d19d8e6d33227946e2488d27a8f6c12dc9 [file] [log] [blame]
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001/*
2 * NewportMedia WiFi chipset driver test tools - wilc-debug
3 * Copyright (c) 2012 NewportMedia Inc.
4 * Author: SSW <sswd@wilcsemic.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 */
11
12#if defined(WILC_DEBUGFS)
13#include <linux/module.h>
14#include <linux/debugfs.h>
15#include <linux/poll.h>
16#include <linux/sched.h>
17
18#include "wilc_wlan_if.h"
19
20
21static struct dentry *wilc_dir;
22
23/*
24 * --------------------------------------------------------------------------------
25 */
Chris Parkb331f152016-02-22 13:12:08 +090026#define DEBUG BIT(0)
27#define INFO BIT(1)
28#define WRN BIT(2)
29#define ERR BIT(3)
Johnny Kimc5c77ba2015-05-11 14:30:56 +090030
Johnny Kimc5c77ba2015-05-11 14:30:56 +090031#define DBG_LEVEL_ALL (DEBUG | INFO | WRN | ERR)
Arnd Bergmann0e1af732015-11-16 15:04:54 +010032atomic_t WILC_DEBUG_LEVEL = ATOMIC_INIT(ERR);
Arnd Bergmann750ffe92015-11-16 15:05:08 +010033EXPORT_SYMBOL_GPL(WILC_DEBUG_LEVEL);
Johnny Kimc5c77ba2015-05-11 14:30:56 +090034
35/*
36 * --------------------------------------------------------------------------------
37 */
38
39
40static ssize_t wilc_debug_level_read(struct file *file, char __user *userbuf, size_t count, loff_t *ppos)
41{
42 char buf[128];
43 int res = 0;
44
45 /* only allow read from start */
46 if (*ppos > 0)
47 return 0;
48
Arnd Bergmann0e1af732015-11-16 15:04:54 +010049 res = scnprintf(buf, sizeof(buf), "Debug Level: %x\n", atomic_read(&WILC_DEBUG_LEVEL));
Johnny Kimc5c77ba2015-05-11 14:30:56 +090050
51 return simple_read_from_buffer(userbuf, count, ppos, buf, res);
52}
53
Chandra S Gorentla6e3f05b2015-08-15 12:23:31 +053054static ssize_t wilc_debug_level_write(struct file *filp, const char __user *buf,
55 size_t count, loff_t *ppos)
Johnny Kimc5c77ba2015-05-11 14:30:56 +090056{
Johnny Kimc5c77ba2015-05-11 14:30:56 +090057 int flag = 0;
Chandra S Gorentla6e3f05b2015-08-15 12:23:31 +053058 int ret;
Johnny Kimc5c77ba2015-05-11 14:30:56 +090059
Chandra S Gorentla6e3f05b2015-08-15 12:23:31 +053060 ret = kstrtouint_from_user(buf, count, 16, &flag);
61 if (ret)
62 return ret;
Johnny Kimc5c77ba2015-05-11 14:30:56 +090063
64 if (flag > DBG_LEVEL_ALL) {
Arnd Bergmann0e1af732015-11-16 15:04:54 +010065 printk("%s, value (0x%08x) is out of range, stay previous flag (0x%08x)\n", __func__, flag, atomic_read(&WILC_DEBUG_LEVEL));
Chandra S Gorentla6e3f05b2015-08-15 12:23:31 +053066 return -EINVAL;
Johnny Kimc5c77ba2015-05-11 14:30:56 +090067 }
68
Arnd Bergmann0e1af732015-11-16 15:04:54 +010069 atomic_set(&WILC_DEBUG_LEVEL, (int)flag);
Johnny Kimc5c77ba2015-05-11 14:30:56 +090070
Chandra S Gorentla78174ad2015-08-08 17:41:36 +053071 if (flag == 0)
Janani Ravichandranf7b7f872016-02-13 23:19:10 -050072 printk(KERN_INFO "Debug-level disabled\n");
Chandra S Gorentla78174ad2015-08-08 17:41:36 +053073 else
Janani Ravichandranf7b7f872016-02-13 23:19:10 -050074 printk(KERN_INFO "Debug-level enabled\n");
Chandra S Gorentla6e3f05b2015-08-15 12:23:31 +053075
Johnny Kimc5c77ba2015-05-11 14:30:56 +090076 return count;
77}
78
Johnny Kimc5c77ba2015-05-11 14:30:56 +090079/*
80 * --------------------------------------------------------------------------------
81 */
82
83#define FOPS(_open, _read, _write, _poll) { \
84 .owner = THIS_MODULE, \
85 .open = (_open), \
86 .read = (_read), \
87 .write = (_write), \
88 .poll = (_poll), \
89}
90
91struct wilc_debugfs_info_t {
92 const char *name;
93 int perm;
94 unsigned int data;
Eva Rachel Retuya8a7b2b12016-02-15 13:52:15 +080095 const struct file_operations fops;
Johnny Kimc5c77ba2015-05-11 14:30:56 +090096};
97
98static struct wilc_debugfs_info_t debugfs_info[] = {
99 { "wilc_debug_level", 0666, (DEBUG | ERR), FOPS(NULL, wilc_debug_level_read, wilc_debug_level_write, NULL), },
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900100};
101
Arnd Bergmannc94f05e2015-11-16 15:05:09 +0100102static int __init wilc_debugfs_init(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900103{
104 int i;
105
106 struct dentry *debugfs_files;
107 struct wilc_debugfs_info_t *info;
108
109 wilc_dir = debugfs_create_dir("wilc_wifi", NULL);
110 if (wilc_dir == ERR_PTR(-ENODEV)) {
111 /* it's not error. the debugfs is just not being enabled. */
112 printk("ERR, kernel has built without debugfs support\n");
113 return 0;
114 }
115
116 if (!wilc_dir) {
117 printk("ERR, debugfs create dir\n");
118 return -1;
119 }
120
121 for (i = 0; i < ARRAY_SIZE(debugfs_info); i++) {
122 info = &debugfs_info[i];
123 debugfs_files = debugfs_create_file(info->name,
124 info->perm,
125 wilc_dir,
126 &info->data,
127 &info->fops);
128
129 if (!debugfs_files) {
130 printk("ERR fail to create the debugfs file, %s\n", info->name);
131 debugfs_remove_recursive(wilc_dir);
132 return -1;
133 }
134 }
135 return 0;
136}
Arnd Bergmannc94f05e2015-11-16 15:05:09 +0100137module_init(wilc_debugfs_init);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900138
Arnd Bergmannc94f05e2015-11-16 15:05:09 +0100139static void __exit wilc_debugfs_remove(void)
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900140{
141 debugfs_remove_recursive(wilc_dir);
142}
Arnd Bergmannc94f05e2015-11-16 15:05:09 +0100143module_exit(wilc_debugfs_remove);
Johnny Kimc5c77ba2015-05-11 14:30:56 +0900144
145#endif
146