channel.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. /*
  2. * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
  3. * All rights reserved.
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License along
  16. * with this program; if not, write to the Free Software Foundation, Inc.,
  17. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  18. *
  19. *
  20. * File: channel.c
  21. *
  22. * Purpose: Channel number mapping
  23. *
  24. * Author: Lucas Lin
  25. *
  26. * Date: Dec 24, 2004
  27. *
  28. *
  29. *
  30. * Revision History:
  31. * 01-18-2005 RobertYu: remove the for loop searching in
  32. * ChannelValid, change ChannelRuleTab
  33. * to lookup-type, reorder table items.
  34. *
  35. *
  36. */
  37. #include "device.h"
  38. #include "channel.h"
  39. #include "rf.h"
  40. static struct ieee80211_rate vnt_rates_bg[] = {
  41. { .bitrate = 10, .hw_value = RATE_1M },
  42. { .bitrate = 20, .hw_value = RATE_2M },
  43. { .bitrate = 55, .hw_value = RATE_5M },
  44. { .bitrate = 110, .hw_value = RATE_11M },
  45. { .bitrate = 60, .hw_value = RATE_6M },
  46. { .bitrate = 90, .hw_value = RATE_9M },
  47. { .bitrate = 120, .hw_value = RATE_12M },
  48. { .bitrate = 180, .hw_value = RATE_18M },
  49. { .bitrate = 240, .hw_value = RATE_24M },
  50. { .bitrate = 360, .hw_value = RATE_36M },
  51. { .bitrate = 480, .hw_value = RATE_48M },
  52. { .bitrate = 540, .hw_value = RATE_54M },
  53. };
  54. static struct ieee80211_rate vnt_rates_a[] = {
  55. { .bitrate = 60, .hw_value = RATE_6M },
  56. { .bitrate = 90, .hw_value = RATE_9M },
  57. { .bitrate = 120, .hw_value = RATE_12M },
  58. { .bitrate = 180, .hw_value = RATE_18M },
  59. { .bitrate = 240, .hw_value = RATE_24M },
  60. { .bitrate = 360, .hw_value = RATE_36M },
  61. { .bitrate = 480, .hw_value = RATE_48M },
  62. { .bitrate = 540, .hw_value = RATE_54M },
  63. };
  64. static struct ieee80211_channel vnt_channels_2ghz[] = {
  65. { .center_freq = 2412, .hw_value = 1 },
  66. { .center_freq = 2417, .hw_value = 2 },
  67. { .center_freq = 2422, .hw_value = 3 },
  68. { .center_freq = 2427, .hw_value = 4 },
  69. { .center_freq = 2432, .hw_value = 5 },
  70. { .center_freq = 2437, .hw_value = 6 },
  71. { .center_freq = 2442, .hw_value = 7 },
  72. { .center_freq = 2447, .hw_value = 8 },
  73. { .center_freq = 2452, .hw_value = 9 },
  74. { .center_freq = 2457, .hw_value = 10 },
  75. { .center_freq = 2462, .hw_value = 11 },
  76. { .center_freq = 2467, .hw_value = 12 },
  77. { .center_freq = 2472, .hw_value = 13 },
  78. { .center_freq = 2484, .hw_value = 14 }
  79. };
  80. static struct ieee80211_channel vnt_channels_5ghz[] = {
  81. { .center_freq = 4915, .hw_value = 15 },
  82. { .center_freq = 4920, .hw_value = 16 },
  83. { .center_freq = 4925, .hw_value = 17 },
  84. { .center_freq = 4935, .hw_value = 18 },
  85. { .center_freq = 4940, .hw_value = 19 },
  86. { .center_freq = 4945, .hw_value = 20 },
  87. { .center_freq = 4960, .hw_value = 21 },
  88. { .center_freq = 4980, .hw_value = 22 },
  89. { .center_freq = 5035, .hw_value = 23 },
  90. { .center_freq = 5040, .hw_value = 24 },
  91. { .center_freq = 5045, .hw_value = 25 },
  92. { .center_freq = 5055, .hw_value = 26 },
  93. { .center_freq = 5060, .hw_value = 27 },
  94. { .center_freq = 5080, .hw_value = 28 },
  95. { .center_freq = 5170, .hw_value = 29 },
  96. { .center_freq = 5180, .hw_value = 30 },
  97. { .center_freq = 5190, .hw_value = 31 },
  98. { .center_freq = 5200, .hw_value = 32 },
  99. { .center_freq = 5210, .hw_value = 33 },
  100. { .center_freq = 5220, .hw_value = 34 },
  101. { .center_freq = 5230, .hw_value = 35 },
  102. { .center_freq = 5240, .hw_value = 36 },
  103. { .center_freq = 5260, .hw_value = 37 },
  104. { .center_freq = 5280, .hw_value = 38 },
  105. { .center_freq = 5300, .hw_value = 39 },
  106. { .center_freq = 5320, .hw_value = 40 },
  107. { .center_freq = 5500, .hw_value = 41 },
  108. { .center_freq = 5520, .hw_value = 42 },
  109. { .center_freq = 5540, .hw_value = 43 },
  110. { .center_freq = 5560, .hw_value = 44 },
  111. { .center_freq = 5580, .hw_value = 45 },
  112. { .center_freq = 5600, .hw_value = 46 },
  113. { .center_freq = 5620, .hw_value = 47 },
  114. { .center_freq = 5640, .hw_value = 48 },
  115. { .center_freq = 5660, .hw_value = 49 },
  116. { .center_freq = 5680, .hw_value = 50 },
  117. { .center_freq = 5700, .hw_value = 51 },
  118. { .center_freq = 5745, .hw_value = 52 },
  119. { .center_freq = 5765, .hw_value = 53 },
  120. { .center_freq = 5785, .hw_value = 54 },
  121. { .center_freq = 5805, .hw_value = 55 },
  122. { .center_freq = 5825, .hw_value = 56 }
  123. };
  124. static struct ieee80211_supported_band vnt_supported_2ghz_band = {
  125. .channels = vnt_channels_2ghz,
  126. .n_channels = ARRAY_SIZE(vnt_channels_2ghz),
  127. .bitrates = vnt_rates_bg,
  128. .n_bitrates = ARRAY_SIZE(vnt_rates_bg),
  129. };
  130. static struct ieee80211_supported_band vnt_supported_5ghz_band = {
  131. .channels = vnt_channels_5ghz,
  132. .n_channels = ARRAY_SIZE(vnt_channels_5ghz),
  133. .bitrates = vnt_rates_a,
  134. .n_bitrates = ARRAY_SIZE(vnt_rates_a),
  135. };
  136. void vnt_init_bands(struct vnt_private *priv)
  137. {
  138. struct ieee80211_channel *ch;
  139. int i;
  140. switch (priv->rf_type) {
  141. case RF_AIROHA7230:
  142. case RF_VT3342A0:
  143. default:
  144. ch = vnt_channels_5ghz;
  145. for (i = 0; i < ARRAY_SIZE(vnt_channels_5ghz); i++) {
  146. ch[i].max_power = VNT_RF_MAX_POWER;
  147. ch[i].flags = IEEE80211_CHAN_NO_HT40;
  148. }
  149. priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
  150. &vnt_supported_5ghz_band;
  151. /* fallthrough */
  152. case RF_AL2230:
  153. case RF_AL2230S:
  154. case RF_VT3226:
  155. case RF_VT3226D0:
  156. ch = vnt_channels_2ghz;
  157. for (i = 0; i < ARRAY_SIZE(vnt_channels_2ghz); i++) {
  158. ch[i].max_power = VNT_RF_MAX_POWER;
  159. ch[i].flags = IEEE80211_CHAN_NO_HT40;
  160. }
  161. priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
  162. &vnt_supported_2ghz_band;
  163. break;
  164. }
  165. }