rc80211_minstrel_ht_debugfs.c 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. /*
  2. * Copyright (C) 2010 Felix Fietkau <nbd@openwrt.org>
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. */
  8. #include <linux/netdevice.h>
  9. #include <linux/types.h>
  10. #include <linux/skbuff.h>
  11. #include <linux/debugfs.h>
  12. #include <linux/ieee80211.h>
  13. #include <linux/export.h>
  14. #include <net/mac80211.h>
  15. #include "rc80211_minstrel.h"
  16. #include "rc80211_minstrel_ht.h"
  17. static char *
  18. minstrel_ht_stats_dump(struct minstrel_ht_sta *mi, int i, char *p)
  19. {
  20. const struct mcs_group *mg;
  21. unsigned int j, tp, prob, eprob;
  22. char htmode = '2';
  23. char gimode = 'L';
  24. u32 gflags;
  25. if (!mi->groups[i].supported)
  26. return p;
  27. mg = &minstrel_mcs_groups[i];
  28. gflags = mg->flags;
  29. if (gflags & IEEE80211_TX_RC_40_MHZ_WIDTH)
  30. htmode = '4';
  31. else if (gflags & IEEE80211_TX_RC_80_MHZ_WIDTH)
  32. htmode = '8';
  33. if (gflags & IEEE80211_TX_RC_SHORT_GI)
  34. gimode = 'S';
  35. for (j = 0; j < MCS_GROUP_RATES; j++) {
  36. struct minstrel_rate_stats *mr = &mi->groups[i].rates[j];
  37. static const int bitrates[4] = { 10, 20, 55, 110 };
  38. int idx = i * MCS_GROUP_RATES + j;
  39. if (!(mi->groups[i].supported & BIT(j)))
  40. continue;
  41. if (gflags & IEEE80211_TX_RC_MCS)
  42. p += sprintf(p, " HT%c0/%cGI ", htmode, gimode);
  43. else if (gflags & IEEE80211_TX_RC_VHT_MCS)
  44. p += sprintf(p, "VHT%c0/%cGI ", htmode, gimode);
  45. else
  46. p += sprintf(p, " CCK/%cP ", j < 4 ? 'L' : 'S');
  47. *(p++) = (idx == mi->max_tp_rate[0]) ? 'A' : ' ';
  48. *(p++) = (idx == mi->max_tp_rate[1]) ? 'B' : ' ';
  49. *(p++) = (idx == mi->max_tp_rate[2]) ? 'C' : ' ';
  50. *(p++) = (idx == mi->max_tp_rate[3]) ? 'D' : ' ';
  51. *(p++) = (idx == mi->max_prob_rate) ? 'P' : ' ';
  52. if (gflags & IEEE80211_TX_RC_MCS) {
  53. p += sprintf(p, " MCS%-2u ", (mg->streams - 1) * 8 + j);
  54. } else if (gflags & IEEE80211_TX_RC_VHT_MCS) {
  55. p += sprintf(p, " MCS%-1u/%1u", j, mg->streams);
  56. } else {
  57. int r = bitrates[j % 4];
  58. p += sprintf(p, " %2u.%1uM ", r / 10, r % 10);
  59. }
  60. tp = mr->cur_tp / 10;
  61. prob = MINSTREL_TRUNC(mr->cur_prob * 1000);
  62. eprob = MINSTREL_TRUNC(mr->probability * 1000);
  63. p += sprintf(p, " %4u.%1u %3u.%1u %3u.%1u "
  64. "%3u %4u(%4u) %9llu(%9llu)\n",
  65. tp / 10, tp % 10,
  66. eprob / 10, eprob % 10,
  67. prob / 10, prob % 10,
  68. mr->retry_count,
  69. mr->last_success,
  70. mr->last_attempts,
  71. (unsigned long long)mr->succ_hist,
  72. (unsigned long long)mr->att_hist);
  73. }
  74. return p;
  75. }
  76. static int
  77. minstrel_ht_stats_open(struct inode *inode, struct file *file)
  78. {
  79. struct minstrel_ht_sta_priv *msp = inode->i_private;
  80. struct minstrel_ht_sta *mi = &msp->ht;
  81. struct minstrel_debugfs_info *ms;
  82. unsigned int i;
  83. char *p;
  84. int ret;
  85. if (!msp->is_ht) {
  86. inode->i_private = &msp->legacy;
  87. ret = minstrel_stats_open(inode, file);
  88. inode->i_private = msp;
  89. return ret;
  90. }
  91. ms = kmalloc(32768, GFP_KERNEL);
  92. if (!ms)
  93. return -ENOMEM;
  94. file->private_data = ms;
  95. p = ms->buf;
  96. p += sprintf(p, " type rate tpt eprob *prob "
  97. "ret *ok(*cum) ok( cum)\n");
  98. p = minstrel_ht_stats_dump(mi, MINSTREL_CCK_GROUP, p);
  99. for (i = 0; i < MINSTREL_CCK_GROUP; i++)
  100. p = minstrel_ht_stats_dump(mi, i, p);
  101. for (i++; i < ARRAY_SIZE(mi->groups); i++)
  102. p = minstrel_ht_stats_dump(mi, i, p);
  103. p += sprintf(p, "\nTotal packet count:: ideal %d "
  104. "lookaround %d\n",
  105. max(0, (int) mi->total_packets - (int) mi->sample_packets),
  106. mi->sample_packets);
  107. p += sprintf(p, "Average A-MPDU length: %d.%d\n",
  108. MINSTREL_TRUNC(mi->avg_ampdu_len),
  109. MINSTREL_TRUNC(mi->avg_ampdu_len * 10) % 10);
  110. ms->len = p - ms->buf;
  111. WARN_ON(ms->len + sizeof(*ms) > 32768);
  112. return nonseekable_open(inode, file);
  113. }
  114. static const struct file_operations minstrel_ht_stat_fops = {
  115. .owner = THIS_MODULE,
  116. .open = minstrel_ht_stats_open,
  117. .read = minstrel_stats_read,
  118. .release = minstrel_stats_release,
  119. .llseek = no_llseek,
  120. };
  121. void
  122. minstrel_ht_add_sta_debugfs(void *priv, void *priv_sta, struct dentry *dir)
  123. {
  124. struct minstrel_ht_sta_priv *msp = priv_sta;
  125. msp->dbg_stats = debugfs_create_file("rc_stats", S_IRUGO, dir, msp,
  126. &minstrel_ht_stat_fops);
  127. }
  128. void
  129. minstrel_ht_remove_sta_debugfs(void *priv, void *priv_sta)
  130. {
  131. struct minstrel_ht_sta_priv *msp = priv_sta;
  132. debugfs_remove(msp->dbg_stats);
  133. }