rc80211_minstrel_ht_debugfs.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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. unsigned int max_mcs = MINSTREL_MAX_STREAMS * MINSTREL_STREAM_GROUPS;
  21. const struct mcs_group *mg;
  22. unsigned int j, tp, prob, eprob;
  23. char htmode = '2';
  24. char gimode = 'L';
  25. if (!mi->groups[i].supported)
  26. return p;
  27. mg = &minstrel_mcs_groups[i];
  28. if (mg->flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
  29. htmode = '4';
  30. if (mg->flags & IEEE80211_TX_RC_SHORT_GI)
  31. gimode = 'S';
  32. for (j = 0; j < MCS_GROUP_RATES; j++) {
  33. struct minstrel_rate_stats *mr = &mi->groups[i].rates[j];
  34. static const int bitrates[4] = { 10, 20, 55, 110 };
  35. int idx = i * MCS_GROUP_RATES + j;
  36. if (!(mi->groups[i].supported & BIT(j)))
  37. continue;
  38. if (i == max_mcs)
  39. p += sprintf(p, "CCK/%cP ", j < 4 ? 'L' : 'S');
  40. else
  41. p += sprintf(p, "HT%c0/%cGI ", htmode, gimode);
  42. *(p++) = (idx == mi->max_tp_rate[0]) ? 'A' : ' ';
  43. *(p++) = (idx == mi->max_tp_rate[1]) ? 'B' : ' ';
  44. *(p++) = (idx == mi->max_tp_rate[2]) ? 'C' : ' ';
  45. *(p++) = (idx == mi->max_tp_rate[3]) ? 'D' : ' ';
  46. *(p++) = (idx == mi->max_prob_rate) ? 'P' : ' ';
  47. if (i == max_mcs) {
  48. int r = bitrates[j % 4];
  49. p += sprintf(p, " %2u.%1uM", r / 10, r % 10);
  50. } else {
  51. p += sprintf(p, " MCS%-2u", (mg->streams - 1) * 8 + j);
  52. }
  53. tp = mr->cur_tp / 10;
  54. prob = MINSTREL_TRUNC(mr->cur_prob * 1000);
  55. eprob = MINSTREL_TRUNC(mr->probability * 1000);
  56. p += sprintf(p, " %6u.%1u %6u.%1u %6u.%1u "
  57. "%3u %3u(%3u) %8llu %8llu\n",
  58. tp / 10, tp % 10,
  59. eprob / 10, eprob % 10,
  60. prob / 10, prob % 10,
  61. mr->retry_count,
  62. mr->last_success,
  63. mr->last_attempts,
  64. (unsigned long long)mr->succ_hist,
  65. (unsigned long long)mr->att_hist);
  66. }
  67. return p;
  68. }
  69. static int
  70. minstrel_ht_stats_open(struct inode *inode, struct file *file)
  71. {
  72. struct minstrel_ht_sta_priv *msp = inode->i_private;
  73. struct minstrel_ht_sta *mi = &msp->ht;
  74. struct minstrel_debugfs_info *ms;
  75. unsigned int i;
  76. unsigned int max_mcs = MINSTREL_MAX_STREAMS * MINSTREL_STREAM_GROUPS;
  77. char *p;
  78. int ret;
  79. if (!msp->is_ht) {
  80. inode->i_private = &msp->legacy;
  81. ret = minstrel_stats_open(inode, file);
  82. inode->i_private = msp;
  83. return ret;
  84. }
  85. ms = kmalloc(sizeof(*ms) + 8192, GFP_KERNEL);
  86. if (!ms)
  87. return -ENOMEM;
  88. file->private_data = ms;
  89. p = ms->buf;
  90. p += sprintf(p, "type rate throughput ewma prob "
  91. "this prob retry this succ/attempt success attempts\n");
  92. p = minstrel_ht_stats_dump(mi, max_mcs, p);
  93. for (i = 0; i < max_mcs; i++)
  94. p = minstrel_ht_stats_dump(mi, i, p);
  95. p += sprintf(p, "\nTotal packet count:: ideal %d "
  96. "lookaround %d\n",
  97. max(0, (int) mi->total_packets - (int) mi->sample_packets),
  98. mi->sample_packets);
  99. p += sprintf(p, "Average A-MPDU length: %d.%d\n",
  100. MINSTREL_TRUNC(mi->avg_ampdu_len),
  101. MINSTREL_TRUNC(mi->avg_ampdu_len * 10) % 10);
  102. ms->len = p - ms->buf;
  103. return nonseekable_open(inode, file);
  104. }
  105. static const struct file_operations minstrel_ht_stat_fops = {
  106. .owner = THIS_MODULE,
  107. .open = minstrel_ht_stats_open,
  108. .read = minstrel_stats_read,
  109. .release = minstrel_stats_release,
  110. .llseek = no_llseek,
  111. };
  112. void
  113. minstrel_ht_add_sta_debugfs(void *priv, void *priv_sta, struct dentry *dir)
  114. {
  115. struct minstrel_ht_sta_priv *msp = priv_sta;
  116. msp->dbg_stats = debugfs_create_file("rc_stats", S_IRUGO, dir, msp,
  117. &minstrel_ht_stat_fops);
  118. }
  119. void
  120. minstrel_ht_remove_sta_debugfs(void *priv, void *priv_sta)
  121. {
  122. struct minstrel_ht_sta_priv *msp = priv_sta;
  123. debugfs_remove(msp->dbg_stats);
  124. }