4 * Copyright 2009 Luis R. Rodriguez <lrodriguez@atheros.com>
5 * Copyright 2007 Johannes Berg <johannes@sipsolutions.net>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #include <linux/slab.h>
16 static int cfg80211_open_file_generic(struct inode *inode, struct file *file)
18 file->private_data = inode->i_private;
22 #define DEBUGFS_READONLY_FILE(name, buflen, fmt, value...) \
23 static ssize_t name## _read(struct file *file, char __user *userbuf, \
24 size_t count, loff_t *ppos) \
26 struct wiphy *wiphy= file->private_data; \
30 res = scnprintf(buf, buflen, fmt "\n", ##value); \
31 return simple_read_from_buffer(userbuf, count, ppos, buf, res); \
34 static const struct file_operations name## _ops = { \
35 .read = name## _read, \
36 .open = cfg80211_open_file_generic, \
37 .llseek = generic_file_llseek, \
40 DEBUGFS_READONLY_FILE(rts_threshold, 20, "%d",
42 DEBUGFS_READONLY_FILE(fragmentation_threshold, 20, "%d",
43 wiphy->frag_threshold);
44 DEBUGFS_READONLY_FILE(short_retry_limit, 20, "%d",
46 DEBUGFS_READONLY_FILE(long_retry_limit, 20, "%d",
49 static int ht_print_chan(struct ieee80211_channel *chan,
50 char *buf, int buf_size, int offset)
52 if (WARN_ON(offset > buf_size))
55 if (chan->flags & IEEE80211_CHAN_DISABLED)
56 return snprintf(buf + offset,
61 return snprintf(buf + offset,
65 (chan->flags & IEEE80211_CHAN_NO_HT40MINUS) ? ' ' : '-',
66 (chan->flags & IEEE80211_CHAN_NO_HT40PLUS) ? ' ' : '+');
69 static ssize_t ht40allow_map_read(struct file *file,
70 char __user *user_buf,
71 size_t count, loff_t *ppos)
73 struct wiphy *wiphy = file->private_data;
75 unsigned int offset = 0, buf_size = PAGE_SIZE, i, r;
76 enum ieee80211_band band;
77 struct ieee80211_supported_band *sband;
79 buf = kzalloc(buf_size, GFP_KERNEL);
83 mutex_lock(&cfg80211_mutex);
85 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
86 sband = wiphy->bands[band];
89 for (i = 0; i < sband->n_channels; i++)
90 offset += ht_print_chan(&sband->channels[i],
91 buf, buf_size, offset);
94 mutex_unlock(&cfg80211_mutex);
96 r = simple_read_from_buffer(user_buf, count, ppos, buf, offset);
103 static const struct file_operations ht40allow_map_ops = {
104 .read = ht40allow_map_read,
105 .open = cfg80211_open_file_generic,
106 .llseek = default_llseek,
109 #define DEBUGFS_ADD(name) \
110 debugfs_create_file(#name, S_IRUGO, phyd, &rdev->wiphy, &name## _ops);
112 void cfg80211_debugfs_rdev_add(struct cfg80211_registered_device *rdev)
114 struct dentry *phyd = rdev->wiphy.debugfsdir;
116 DEBUGFS_ADD(rts_threshold);
117 DEBUGFS_ADD(fragmentation_threshold);
118 DEBUGFS_ADD(short_retry_limit);
119 DEBUGFS_ADD(long_retry_limit);
120 DEBUGFS_ADD(ht40allow_map);