rc.c 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710
  1. /*
  2. * Copyright (c) 2004 Video54 Technologies, Inc.
  3. * Copyright (c) 2004-2009 Atheros Communications, Inc.
  4. *
  5. * Permission to use, copy, modify, and/or distribute this software for any
  6. * purpose with or without fee is hereby granted, provided that the above
  7. * copyright notice and this permission notice appear in all copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  10. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  11. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  12. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  13. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  14. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  15. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  16. */
  17. #include "ath9k.h"
  18. static const struct ath_rate_table ar5416_11na_ratetable = {
  19. 42,
  20. {
  21. { VALID, VALID, WLAN_RC_PHY_OFDM, 6000, /* 6 Mb */
  22. 5400, 0x0b, 0x00, 12,
  23. 0, 2, 1, 0, 0, 0, 0, 0 },
  24. { VALID, VALID, WLAN_RC_PHY_OFDM, 9000, /* 9 Mb */
  25. 7800, 0x0f, 0x00, 18,
  26. 0, 3, 1, 1, 1, 1, 1, 0 },
  27. { VALID, VALID, WLAN_RC_PHY_OFDM, 12000, /* 12 Mb */
  28. 10000, 0x0a, 0x00, 24,
  29. 2, 4, 2, 2, 2, 2, 2, 0 },
  30. { VALID, VALID, WLAN_RC_PHY_OFDM, 18000, /* 18 Mb */
  31. 13900, 0x0e, 0x00, 36,
  32. 2, 6, 2, 3, 3, 3, 3, 0 },
  33. { VALID, VALID, WLAN_RC_PHY_OFDM, 24000, /* 24 Mb */
  34. 17300, 0x09, 0x00, 48,
  35. 4, 10, 3, 4, 4, 4, 4, 0 },
  36. { VALID, VALID, WLAN_RC_PHY_OFDM, 36000, /* 36 Mb */
  37. 23000, 0x0d, 0x00, 72,
  38. 4, 14, 3, 5, 5, 5, 5, 0 },
  39. { VALID, VALID, WLAN_RC_PHY_OFDM, 48000, /* 48 Mb */
  40. 27400, 0x08, 0x00, 96,
  41. 4, 20, 3, 6, 6, 6, 6, 0 },
  42. { VALID, VALID, WLAN_RC_PHY_OFDM, 54000, /* 54 Mb */
  43. 29300, 0x0c, 0x00, 108,
  44. 4, 23, 3, 7, 7, 7, 7, 0 },
  45. { VALID_20, VALID_20, WLAN_RC_PHY_HT_20_SS, 6500, /* 6.5 Mb */
  46. 6400, 0x80, 0x00, 0,
  47. 0, 2, 3, 8, 24, 8, 24, 3216 },
  48. { VALID_20, VALID_20, WLAN_RC_PHY_HT_20_SS, 13000, /* 13 Mb */
  49. 12700, 0x81, 0x00, 1,
  50. 2, 4, 3, 9, 25, 9, 25, 6434 },
  51. { VALID_20, VALID_20, WLAN_RC_PHY_HT_20_SS, 19500, /* 19.5 Mb */
  52. 18800, 0x82, 0x00, 2,
  53. 2, 6, 3, 10, 26, 10, 26, 9650 },
  54. { VALID_20, VALID_20, WLAN_RC_PHY_HT_20_SS, 26000, /* 26 Mb */
  55. 25000, 0x83, 0x00, 3,
  56. 4, 10, 3, 11, 27, 11, 27, 12868 },
  57. { VALID_20, VALID_20, WLAN_RC_PHY_HT_20_SS, 39000, /* 39 Mb */
  58. 36700, 0x84, 0x00, 4,
  59. 4, 14, 3, 12, 28, 12, 28, 19304 },
  60. { INVALID, VALID_20, WLAN_RC_PHY_HT_20_SS, 52000, /* 52 Mb */
  61. 48100, 0x85, 0x00, 5,
  62. 4, 20, 3, 13, 29, 13, 29, 25740 },
  63. { INVALID, VALID_20, WLAN_RC_PHY_HT_20_SS, 58500, /* 58.5 Mb */
  64. 53500, 0x86, 0x00, 6,
  65. 4, 23, 3, 14, 30, 14, 30, 28956 },
  66. { INVALID, VALID_20, WLAN_RC_PHY_HT_20_SS, 65000, /* 65 Mb */
  67. 59000, 0x87, 0x00, 7,
  68. 4, 25, 3, 15, 31, 15, 32, 32180 },
  69. { INVALID, INVALID, WLAN_RC_PHY_HT_20_DS, 13000, /* 13 Mb */
  70. 12700, 0x88, 0x00,
  71. 8, 0, 2, 3, 16, 33, 16, 33, 6430 },
  72. { INVALID, INVALID, WLAN_RC_PHY_HT_20_DS, 26000, /* 26 Mb */
  73. 24800, 0x89, 0x00, 9,
  74. 2, 4, 3, 17, 34, 17, 34, 12860 },
  75. { INVALID, INVALID, WLAN_RC_PHY_HT_20_DS, 39000, /* 39 Mb */
  76. 36600, 0x8a, 0x00, 10,
  77. 2, 6, 3, 18, 35, 18, 35, 19300 },
  78. { VALID_20, INVALID, WLAN_RC_PHY_HT_20_DS, 52000, /* 52 Mb */
  79. 48100, 0x8b, 0x00, 11,
  80. 4, 10, 3, 19, 36, 19, 36, 25736 },
  81. { VALID_20, INVALID, WLAN_RC_PHY_HT_20_DS, 78000, /* 78 Mb */
  82. 69500, 0x8c, 0x00, 12,
  83. 4, 14, 3, 20, 37, 20, 37, 38600 },
  84. { VALID_20, INVALID, WLAN_RC_PHY_HT_20_DS, 104000, /* 104 Mb */
  85. 89500, 0x8d, 0x00, 13,
  86. 4, 20, 3, 21, 38, 21, 38, 51472 },
  87. { VALID_20, INVALID, WLAN_RC_PHY_HT_20_DS, 117000, /* 117 Mb */
  88. 98900, 0x8e, 0x00, 14,
  89. 4, 23, 3, 22, 39, 22, 39, 57890 },
  90. { VALID_20, INVALID, WLAN_RC_PHY_HT_20_DS, 130000, /* 130 Mb */
  91. 108300, 0x8f, 0x00, 15,
  92. 4, 25, 3, 23, 40, 23, 41, 64320 },
  93. { VALID_40, VALID_40, WLAN_RC_PHY_HT_40_SS, 13500, /* 13.5 Mb */
  94. 13200, 0x80, 0x00, 0,
  95. 0, 2, 3, 8, 24, 24, 24, 6684 },
  96. { VALID_40, VALID_40, WLAN_RC_PHY_HT_40_SS, 27500, /* 27.0 Mb */
  97. 25900, 0x81, 0x00, 1,
  98. 2, 4, 3, 9, 25, 25, 25, 13368 },
  99. { VALID_40, VALID_40, WLAN_RC_PHY_HT_40_SS, 40500, /* 40.5 Mb */
  100. 38600, 0x82, 0x00, 2,
  101. 2, 6, 3, 10, 26, 26, 26, 20052 },
  102. { VALID_40, VALID_40, WLAN_RC_PHY_HT_40_SS, 54000, /* 54 Mb */
  103. 49800, 0x83, 0x00, 3,
  104. 4, 10, 3, 11, 27, 27, 27, 26738 },
  105. { VALID_40, VALID_40, WLAN_RC_PHY_HT_40_SS, 81500, /* 81 Mb */
  106. 72200, 0x84, 0x00, 4,
  107. 4, 14, 3, 12, 28, 28, 28, 40104 },
  108. { INVALID, VALID_40, WLAN_RC_PHY_HT_40_SS, 108000, /* 108 Mb */
  109. 92900, 0x85, 0x00, 5,
  110. 4, 20, 3, 13, 29, 29, 29, 53476 },
  111. { INVALID, VALID_40, WLAN_RC_PHY_HT_40_SS, 121500, /* 121.5 Mb */
  112. 102700, 0x86, 0x00, 6,
  113. 4, 23, 3, 14, 30, 30, 30, 60156 },
  114. { INVALID, VALID_40, WLAN_RC_PHY_HT_40_SS, 135000, /* 135 Mb */
  115. 112000, 0x87, 0x00, 7,
  116. 4, 25, 3, 15, 31, 32, 32, 66840 },
  117. { INVALID, VALID_40, WLAN_RC_PHY_HT_40_SS_HGI, 150000, /* 150 Mb */
  118. 122000, 0x87, 0x00, 7,
  119. 4, 25, 3, 15, 31, 32, 32, 74200 },
  120. { INVALID, INVALID, WLAN_RC_PHY_HT_40_DS, 27000, /* 27 Mb */
  121. 25800, 0x88, 0x00, 8,
  122. 0, 2, 3, 16, 33, 33, 33, 13360 },
  123. { INVALID, INVALID, WLAN_RC_PHY_HT_40_DS, 54000, /* 54 Mb */
  124. 49800, 0x89, 0x00, 9,
  125. 2, 4, 3, 17, 34, 34, 34, 26720 },
  126. { INVALID, INVALID, WLAN_RC_PHY_HT_40_DS, 81000, /* 81 Mb */
  127. 71900, 0x8a, 0x00, 10,
  128. 2, 6, 3, 18, 35, 35, 35, 40080 },
  129. { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS, 108000, /* 108 Mb */
  130. 92500, 0x8b, 0x00, 11,
  131. 4, 10, 3, 19, 36, 36, 36, 53440 },
  132. { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS, 162000, /* 162 Mb */
  133. 130300, 0x8c, 0x00, 12,
  134. 4, 14, 3, 20, 37, 37, 37, 80160 },
  135. { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS, 216000, /* 216 Mb */
  136. 162800, 0x8d, 0x00, 13,
  137. 4, 20, 3, 21, 38, 38, 38, 106880 },
  138. { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS, 243000, /* 243 Mb */
  139. 178200, 0x8e, 0x00, 14,
  140. 4, 23, 3, 22, 39, 39, 39, 120240 },
  141. { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS, 270000, /* 270 Mb */
  142. 192100, 0x8f, 0x00, 15,
  143. 4, 25, 3, 23, 40, 41, 41, 133600 },
  144. { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS_HGI, 300000, /* 300 Mb */
  145. 207000, 0x8f, 0x00, 15,
  146. 4, 25, 3, 23, 40, 41, 41, 148400 },
  147. },
  148. 50, /* probe interval */
  149. 50, /* rssi reduce interval */
  150. WLAN_RC_HT_FLAG, /* Phy rates allowed initially */
  151. };
  152. /* 4ms frame limit not used for NG mode. The values filled
  153. * for HT are the 64K max aggregate limit */
  154. static const struct ath_rate_table ar5416_11ng_ratetable = {
  155. 46,
  156. {
  157. { VALID_ALL, VALID_ALL, WLAN_RC_PHY_CCK, 1000, /* 1 Mb */
  158. 900, 0x1b, 0x00, 2,
  159. 0, 0, 1, 0, 0, 0, 0, 0 },
  160. { VALID_ALL, VALID_ALL, WLAN_RC_PHY_CCK, 2000, /* 2 Mb */
  161. 1900, 0x1a, 0x04, 4,
  162. 1, 1, 1, 1, 1, 1, 1, 0 },
  163. { VALID_ALL, VALID_ALL, WLAN_RC_PHY_CCK, 5500, /* 5.5 Mb */
  164. 4900, 0x19, 0x04, 11,
  165. 2, 2, 2, 2, 2, 2, 2, 0 },
  166. { VALID_ALL, VALID_ALL, WLAN_RC_PHY_CCK, 11000, /* 11 Mb */
  167. 8100, 0x18, 0x04, 22,
  168. 3, 3, 2, 3, 3, 3, 3, 0 },
  169. { INVALID, INVALID, WLAN_RC_PHY_OFDM, 6000, /* 6 Mb */
  170. 5400, 0x0b, 0x00, 12,
  171. 4, 2, 1, 4, 4, 4, 4, 0 },
  172. { INVALID, INVALID, WLAN_RC_PHY_OFDM, 9000, /* 9 Mb */
  173. 7800, 0x0f, 0x00, 18,
  174. 4, 3, 1, 5, 5, 5, 5, 0 },
  175. { VALID, VALID, WLAN_RC_PHY_OFDM, 12000, /* 12 Mb */
  176. 10100, 0x0a, 0x00, 24,
  177. 6, 4, 1, 6, 6, 6, 6, 0 },
  178. { VALID, VALID, WLAN_RC_PHY_OFDM, 18000, /* 18 Mb */
  179. 14100, 0x0e, 0x00, 36,
  180. 6, 6, 2, 7, 7, 7, 7, 0 },
  181. { VALID, VALID, WLAN_RC_PHY_OFDM, 24000, /* 24 Mb */
  182. 17700, 0x09, 0x00, 48,
  183. 8, 10, 3, 8, 8, 8, 8, 0 },
  184. { VALID, VALID, WLAN_RC_PHY_OFDM, 36000, /* 36 Mb */
  185. 23700, 0x0d, 0x00, 72,
  186. 8, 14, 3, 9, 9, 9, 9, 0 },
  187. { VALID, VALID, WLAN_RC_PHY_OFDM, 48000, /* 48 Mb */
  188. 27400, 0x08, 0x00, 96,
  189. 8, 20, 3, 10, 10, 10, 10, 0 },
  190. { VALID, VALID, WLAN_RC_PHY_OFDM, 54000, /* 54 Mb */
  191. 30900, 0x0c, 0x00, 108,
  192. 8, 23, 3, 11, 11, 11, 11, 0 },
  193. { INVALID, INVALID, WLAN_RC_PHY_HT_20_SS, 6500, /* 6.5 Mb */
  194. 6400, 0x80, 0x00, 0,
  195. 4, 2, 3, 12, 28, 12, 28, 3216 },
  196. { VALID_20, VALID_20, WLAN_RC_PHY_HT_20_SS, 13000, /* 13 Mb */
  197. 12700, 0x81, 0x00, 1,
  198. 6, 4, 3, 13, 29, 13, 29, 6434 },
  199. { VALID_20, VALID_20, WLAN_RC_PHY_HT_20_SS, 19500, /* 19.5 Mb */
  200. 18800, 0x82, 0x00, 2,
  201. 6, 6, 3, 14, 30, 14, 30, 9650 },
  202. { VALID_20, VALID_20, WLAN_RC_PHY_HT_20_SS, 26000, /* 26 Mb */
  203. 25000, 0x83, 0x00, 3,
  204. 8, 10, 3, 15, 31, 15, 31, 12868 },
  205. { VALID_20, VALID_20, WLAN_RC_PHY_HT_20_SS, 39000, /* 39 Mb */
  206. 36700, 0x84, 0x00, 4,
  207. 8, 14, 3, 16, 32, 16, 32, 19304 },
  208. { INVALID, VALID_20, WLAN_RC_PHY_HT_20_SS, 52000, /* 52 Mb */
  209. 48100, 0x85, 0x00, 5,
  210. 8, 20, 3, 17, 33, 17, 33, 25740 },
  211. { INVALID, VALID_20, WLAN_RC_PHY_HT_20_SS, 58500, /* 58.5 Mb */
  212. 53500, 0x86, 0x00, 6,
  213. 8, 23, 3, 18, 34, 18, 34, 28956 },
  214. { INVALID, VALID_20, WLAN_RC_PHY_HT_20_SS, 65000, /* 65 Mb */
  215. 59000, 0x87, 0x00, 7,
  216. 8, 25, 3, 19, 35, 19, 36, 32180 },
  217. { INVALID, INVALID, WLAN_RC_PHY_HT_20_DS, 13000, /* 13 Mb */
  218. 12700, 0x88, 0x00, 8,
  219. 4, 2, 3, 20, 37, 20, 37, 6430 },
  220. { INVALID, INVALID, WLAN_RC_PHY_HT_20_DS, 26000, /* 26 Mb */
  221. 24800, 0x89, 0x00, 9,
  222. 6, 4, 3, 21, 38, 21, 38, 12860 },
  223. { INVALID, INVALID, WLAN_RC_PHY_HT_20_DS, 39000, /* 39 Mb */
  224. 36600, 0x8a, 0x00, 10,
  225. 6, 6, 3, 22, 39, 22, 39, 19300 },
  226. { VALID_20, INVALID, WLAN_RC_PHY_HT_20_DS, 52000, /* 52 Mb */
  227. 48100, 0x8b, 0x00, 11,
  228. 8, 10, 3, 23, 40, 23, 40, 25736 },
  229. { VALID_20, INVALID, WLAN_RC_PHY_HT_20_DS, 78000, /* 78 Mb */
  230. 69500, 0x8c, 0x00, 12,
  231. 8, 14, 3, 24, 41, 24, 41, 38600 },
  232. { VALID_20, INVALID, WLAN_RC_PHY_HT_20_DS, 104000, /* 104 Mb */
  233. 89500, 0x8d, 0x00, 13,
  234. 8, 20, 3, 25, 42, 25, 42, 51472 },
  235. { VALID_20, INVALID, WLAN_RC_PHY_HT_20_DS, 117000, /* 117 Mb */
  236. 98900, 0x8e, 0x00, 14,
  237. 8, 23, 3, 26, 43, 26, 44, 57890 },
  238. { VALID_20, INVALID, WLAN_RC_PHY_HT_20_DS, 130000, /* 130 Mb */
  239. 108300, 0x8f, 0x00, 15,
  240. 8, 25, 3, 27, 44, 27, 45, 64320 },
  241. { VALID_40, VALID_40, WLAN_RC_PHY_HT_40_SS, 13500, /* 13.5 Mb */
  242. 13200, 0x80, 0x00, 0,
  243. 8, 2, 3, 12, 28, 28, 28, 6684 },
  244. { VALID_40, VALID_40, WLAN_RC_PHY_HT_40_SS, 27500, /* 27.0 Mb */
  245. 25900, 0x81, 0x00, 1,
  246. 8, 4, 3, 13, 29, 29, 29, 13368 },
  247. { VALID_40, VALID_40, WLAN_RC_PHY_HT_40_SS, 40500, /* 40.5 Mb */
  248. 38600, 0x82, 0x00, 2,
  249. 8, 6, 3, 14, 30, 30, 30, 20052 },
  250. { VALID_40, VALID_40, WLAN_RC_PHY_HT_40_SS, 54000, /* 54 Mb */
  251. 49800, 0x83, 0x00, 3,
  252. 8, 10, 3, 15, 31, 31, 31, 26738 },
  253. { VALID_40, VALID_40, WLAN_RC_PHY_HT_40_SS, 81500, /* 81 Mb */
  254. 72200, 0x84, 0x00, 4,
  255. 8, 14, 3, 16, 32, 32, 32, 40104 },
  256. { INVALID, VALID_40, WLAN_RC_PHY_HT_40_SS, 108000, /* 108 Mb */
  257. 92900, 0x85, 0x00, 5,
  258. 8, 20, 3, 17, 33, 33, 33, 53476 },
  259. { INVALID, VALID_40, WLAN_RC_PHY_HT_40_SS, 121500, /* 121.5 Mb */
  260. 102700, 0x86, 0x00, 6,
  261. 8, 23, 3, 18, 34, 34, 34, 60156 },
  262. { INVALID, VALID_40, WLAN_RC_PHY_HT_40_SS, 135000, /* 135 Mb */
  263. 112000, 0x87, 0x00, 7,
  264. 8, 23, 3, 19, 35, 36, 36, 66840 },
  265. { INVALID, VALID_40, WLAN_RC_PHY_HT_40_SS_HGI, 150000, /* 150 Mb */
  266. 122000, 0x87, 0x00, 7,
  267. 8, 25, 3, 19, 35, 36, 36, 74200 },
  268. { INVALID, INVALID, WLAN_RC_PHY_HT_40_DS, 27000, /* 27 Mb */
  269. 25800, 0x88, 0x00, 8,
  270. 8, 2, 3, 20, 37, 37, 37, 13360 },
  271. { INVALID, INVALID, WLAN_RC_PHY_HT_40_DS, 54000, /* 54 Mb */
  272. 49800, 0x89, 0x00, 9,
  273. 8, 4, 3, 21, 38, 38, 38, 26720 },
  274. { INVALID, INVALID, WLAN_RC_PHY_HT_40_DS, 81000, /* 81 Mb */
  275. 71900, 0x8a, 0x00, 10,
  276. 8, 6, 3, 22, 39, 39, 39, 40080 },
  277. { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS, 108000, /* 108 Mb */
  278. 92500, 0x8b, 0x00, 11,
  279. 8, 10, 3, 23, 40, 40, 40, 53440 },
  280. { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS, 162000, /* 162 Mb */
  281. 130300, 0x8c, 0x00, 12,
  282. 8, 14, 3, 24, 41, 41, 41, 80160 },
  283. { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS, 216000, /* 216 Mb */
  284. 162800, 0x8d, 0x00, 13,
  285. 8, 20, 3, 25, 42, 42, 42, 106880 },
  286. { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS, 243000, /* 243 Mb */
  287. 178200, 0x8e, 0x00, 14,
  288. 8, 23, 3, 26, 43, 43, 43, 120240 },
  289. { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS, 270000, /* 270 Mb */
  290. 192100, 0x8f, 0x00, 15,
  291. 8, 23, 3, 27, 44, 45, 45, 133600 },
  292. { VALID_40, INVALID, WLAN_RC_PHY_HT_40_DS_HGI, 300000, /* 300 Mb */
  293. 207000, 0x8f, 0x00, 15,
  294. 8, 25, 3, 27, 44, 45, 45, 148400 },
  295. },
  296. 50, /* probe interval */
  297. 50, /* rssi reduce interval */
  298. WLAN_RC_HT_FLAG, /* Phy rates allowed initially */
  299. };
  300. static const struct ath_rate_table ar5416_11a_ratetable = {
  301. 8,
  302. {
  303. { VALID, VALID, WLAN_RC_PHY_OFDM, 6000, /* 6 Mb */
  304. 5400, 0x0b, 0x00, (0x80|12),
  305. 0, 2, 1, 0, 0 },
  306. { VALID, VALID, WLAN_RC_PHY_OFDM, 9000, /* 9 Mb */
  307. 7800, 0x0f, 0x00, 18,
  308. 0, 3, 1, 1, 0 },
  309. { VALID, VALID, WLAN_RC_PHY_OFDM, 12000, /* 12 Mb */
  310. 10000, 0x0a, 0x00, (0x80|24),
  311. 2, 4, 2, 2, 0 },
  312. { VALID, VALID, WLAN_RC_PHY_OFDM, 18000, /* 18 Mb */
  313. 13900, 0x0e, 0x00, 36,
  314. 2, 6, 2, 3, 0 },
  315. { VALID, VALID, WLAN_RC_PHY_OFDM, 24000, /* 24 Mb */
  316. 17300, 0x09, 0x00, (0x80|48),
  317. 4, 10, 3, 4, 0 },
  318. { VALID, VALID, WLAN_RC_PHY_OFDM, 36000, /* 36 Mb */
  319. 23000, 0x0d, 0x00, 72,
  320. 4, 14, 3, 5, 0 },
  321. { VALID, VALID, WLAN_RC_PHY_OFDM, 48000, /* 48 Mb */
  322. 27400, 0x08, 0x00, 96,
  323. 4, 19, 3, 6, 0 },
  324. { VALID, VALID, WLAN_RC_PHY_OFDM, 54000, /* 54 Mb */
  325. 29300, 0x0c, 0x00, 108,
  326. 4, 23, 3, 7, 0 },
  327. },
  328. 50, /* probe interval */
  329. 50, /* rssi reduce interval */
  330. 0, /* Phy rates allowed initially */
  331. };
  332. static const struct ath_rate_table ar5416_11g_ratetable = {
  333. 12,
  334. {
  335. { VALID, VALID, WLAN_RC_PHY_CCK, 1000, /* 1 Mb */
  336. 900, 0x1b, 0x00, 2,
  337. 0, 0, 1, 0, 0 },
  338. { VALID, VALID, WLAN_RC_PHY_CCK, 2000, /* 2 Mb */
  339. 1900, 0x1a, 0x04, 4,
  340. 1, 1, 1, 1, 0 },
  341. { VALID, VALID, WLAN_RC_PHY_CCK, 5500, /* 5.5 Mb */
  342. 4900, 0x19, 0x04, 11,
  343. 2, 2, 2, 2, 0 },
  344. { VALID, VALID, WLAN_RC_PHY_CCK, 11000, /* 11 Mb */
  345. 8100, 0x18, 0x04, 22,
  346. 3, 3, 2, 3, 0 },
  347. { INVALID, INVALID, WLAN_RC_PHY_OFDM, 6000, /* 6 Mb */
  348. 5400, 0x0b, 0x00, 12,
  349. 4, 2, 1, 4, 0 },
  350. { INVALID, INVALID, WLAN_RC_PHY_OFDM, 9000, /* 9 Mb */
  351. 7800, 0x0f, 0x00, 18,
  352. 4, 3, 1, 5, 0 },
  353. { VALID, VALID, WLAN_RC_PHY_OFDM, 12000, /* 12 Mb */
  354. 10000, 0x0a, 0x00, 24,
  355. 6, 4, 1, 6, 0 },
  356. { VALID, VALID, WLAN_RC_PHY_OFDM, 18000, /* 18 Mb */
  357. 13900, 0x0e, 0x00, 36,
  358. 6, 6, 2, 7, 0 },
  359. { VALID, VALID, WLAN_RC_PHY_OFDM, 24000, /* 24 Mb */
  360. 17300, 0x09, 0x00, 48,
  361. 8, 10, 3, 8, 0 },
  362. { VALID, VALID, WLAN_RC_PHY_OFDM, 36000, /* 36 Mb */
  363. 23000, 0x0d, 0x00, 72,
  364. 8, 14, 3, 9, 0 },
  365. { VALID, VALID, WLAN_RC_PHY_OFDM, 48000, /* 48 Mb */
  366. 27400, 0x08, 0x00, 96,
  367. 8, 19, 3, 10, 0 },
  368. { VALID, VALID, WLAN_RC_PHY_OFDM, 54000, /* 54 Mb */
  369. 29300, 0x0c, 0x00, 108,
  370. 8, 23, 3, 11, 0 },
  371. },
  372. 50, /* probe interval */
  373. 50, /* rssi reduce interval */
  374. 0, /* Phy rates allowed initially */
  375. };
  376. static inline int8_t median(int8_t a, int8_t b, int8_t c)
  377. {
  378. if (a >= b) {
  379. if (b >= c)
  380. return b;
  381. else if (a > c)
  382. return c;
  383. else
  384. return a;
  385. } else {
  386. if (a >= c)
  387. return a;
  388. else if (b >= c)
  389. return c;
  390. else
  391. return b;
  392. }
  393. }
  394. static void ath_rc_sort_validrates(const struct ath_rate_table *rate_table,
  395. struct ath_rate_priv *ath_rc_priv)
  396. {
  397. u8 i, j, idx, idx_next;
  398. for (i = ath_rc_priv->max_valid_rate - 1; i > 0; i--) {
  399. for (j = 0; j <= i-1; j++) {
  400. idx = ath_rc_priv->valid_rate_index[j];
  401. idx_next = ath_rc_priv->valid_rate_index[j+1];
  402. if (rate_table->info[idx].ratekbps >
  403. rate_table->info[idx_next].ratekbps) {
  404. ath_rc_priv->valid_rate_index[j] = idx_next;
  405. ath_rc_priv->valid_rate_index[j+1] = idx;
  406. }
  407. }
  408. }
  409. }
  410. static void ath_rc_init_valid_txmask(struct ath_rate_priv *ath_rc_priv)
  411. {
  412. u8 i;
  413. for (i = 0; i < ath_rc_priv->rate_table_size; i++)
  414. ath_rc_priv->valid_rate_index[i] = 0;
  415. }
  416. static inline void ath_rc_set_valid_txmask(struct ath_rate_priv *ath_rc_priv,
  417. u8 index, int valid_tx_rate)
  418. {
  419. ASSERT(index <= ath_rc_priv->rate_table_size);
  420. ath_rc_priv->valid_rate_index[index] = valid_tx_rate ? 1 : 0;
  421. }
  422. static inline
  423. int ath_rc_get_nextvalid_txrate(const struct ath_rate_table *rate_table,
  424. struct ath_rate_priv *ath_rc_priv,
  425. u8 cur_valid_txrate,
  426. u8 *next_idx)
  427. {
  428. u8 i;
  429. for (i = 0; i < ath_rc_priv->max_valid_rate - 1; i++) {
  430. if (ath_rc_priv->valid_rate_index[i] == cur_valid_txrate) {
  431. *next_idx = ath_rc_priv->valid_rate_index[i+1];
  432. return 1;
  433. }
  434. }
  435. /* No more valid rates */
  436. *next_idx = 0;
  437. return 0;
  438. }
  439. /* Return true only for single stream */
  440. static int ath_rc_valid_phyrate(u32 phy, u32 capflag, int ignore_cw)
  441. {
  442. if (WLAN_RC_PHY_HT(phy) && !(capflag & WLAN_RC_HT_FLAG))
  443. return 0;
  444. if (WLAN_RC_PHY_DS(phy) && !(capflag & WLAN_RC_DS_FLAG))
  445. return 0;
  446. if (WLAN_RC_PHY_SGI(phy) && !(capflag & WLAN_RC_SGI_FLAG))
  447. return 0;
  448. if (!ignore_cw && WLAN_RC_PHY_HT(phy))
  449. if (WLAN_RC_PHY_40(phy) && !(capflag & WLAN_RC_40_FLAG))
  450. return 0;
  451. if (!WLAN_RC_PHY_40(phy) && (capflag & WLAN_RC_40_FLAG))
  452. return 0;
  453. return 1;
  454. }
  455. static inline int
  456. ath_rc_get_lower_rix(const struct ath_rate_table *rate_table,
  457. struct ath_rate_priv *ath_rc_priv,
  458. u8 cur_valid_txrate, u8 *next_idx)
  459. {
  460. int8_t i;
  461. for (i = 1; i < ath_rc_priv->max_valid_rate ; i++) {
  462. if (ath_rc_priv->valid_rate_index[i] == cur_valid_txrate) {
  463. *next_idx = ath_rc_priv->valid_rate_index[i-1];
  464. return 1;
  465. }
  466. }
  467. return 0;
  468. }
  469. static u8 ath_rc_init_validrates(struct ath_rate_priv *ath_rc_priv,
  470. const struct ath_rate_table *rate_table,
  471. u32 capflag)
  472. {
  473. u8 i, hi = 0;
  474. u32 valid;
  475. for (i = 0; i < rate_table->rate_cnt; i++) {
  476. valid = (!(ath_rc_priv->ht_cap & WLAN_RC_DS_FLAG) ?
  477. rate_table->info[i].valid_single_stream :
  478. rate_table->info[i].valid);
  479. if (valid == 1) {
  480. u32 phy = rate_table->info[i].phy;
  481. u8 valid_rate_count = 0;
  482. if (!ath_rc_valid_phyrate(phy, capflag, 0))
  483. continue;
  484. valid_rate_count = ath_rc_priv->valid_phy_ratecnt[phy];
  485. ath_rc_priv->valid_phy_rateidx[phy][valid_rate_count] = i;
  486. ath_rc_priv->valid_phy_ratecnt[phy] += 1;
  487. ath_rc_set_valid_txmask(ath_rc_priv, i, 1);
  488. hi = A_MAX(hi, i);
  489. }
  490. }
  491. return hi;
  492. }
  493. static u8 ath_rc_setvalid_rates(struct ath_rate_priv *ath_rc_priv,
  494. const struct ath_rate_table *rate_table,
  495. struct ath_rateset *rateset,
  496. u32 capflag)
  497. {
  498. u8 i, j, hi = 0;
  499. /* Use intersection of working rates and valid rates */
  500. for (i = 0; i < rateset->rs_nrates; i++) {
  501. for (j = 0; j < rate_table->rate_cnt; j++) {
  502. u32 phy = rate_table->info[j].phy;
  503. u32 valid = (!(ath_rc_priv->ht_cap & WLAN_RC_DS_FLAG) ?
  504. rate_table->info[j].valid_single_stream :
  505. rate_table->info[j].valid);
  506. u8 rate = rateset->rs_rates[i];
  507. u8 dot11rate = rate_table->info[j].dot11rate;
  508. /* We allow a rate only if its valid and the
  509. * capflag matches one of the validity
  510. * (VALID/VALID_20/VALID_40) flags */
  511. if (((rate & 0x7F) == (dot11rate & 0x7F)) &&
  512. ((valid & WLAN_RC_CAP_MODE(capflag)) ==
  513. WLAN_RC_CAP_MODE(capflag)) &&
  514. !WLAN_RC_PHY_HT(phy)) {
  515. u8 valid_rate_count = 0;
  516. if (!ath_rc_valid_phyrate(phy, capflag, 0))
  517. continue;
  518. valid_rate_count =
  519. ath_rc_priv->valid_phy_ratecnt[phy];
  520. ath_rc_priv->valid_phy_rateidx[phy]
  521. [valid_rate_count] = j;
  522. ath_rc_priv->valid_phy_ratecnt[phy] += 1;
  523. ath_rc_set_valid_txmask(ath_rc_priv, j, 1);
  524. hi = A_MAX(hi, j);
  525. }
  526. }
  527. }
  528. return hi;
  529. }
  530. static u8 ath_rc_setvalid_htrates(struct ath_rate_priv *ath_rc_priv,
  531. const struct ath_rate_table *rate_table,
  532. u8 *mcs_set, u32 capflag)
  533. {
  534. struct ath_rateset *rateset = (struct ath_rateset *)mcs_set;
  535. u8 i, j, hi = 0;
  536. /* Use intersection of working rates and valid rates */
  537. for (i = 0; i < rateset->rs_nrates; i++) {
  538. for (j = 0; j < rate_table->rate_cnt; j++) {
  539. u32 phy = rate_table->info[j].phy;
  540. u32 valid = (!(ath_rc_priv->ht_cap & WLAN_RC_DS_FLAG) ?
  541. rate_table->info[j].valid_single_stream :
  542. rate_table->info[j].valid);
  543. u8 rate = rateset->rs_rates[i];
  544. u8 dot11rate = rate_table->info[j].dot11rate;
  545. if (((rate & 0x7F) != (dot11rate & 0x7F)) ||
  546. !WLAN_RC_PHY_HT(phy) ||
  547. !WLAN_RC_PHY_HT_VALID(valid, capflag))
  548. continue;
  549. if (!ath_rc_valid_phyrate(phy, capflag, 0))
  550. continue;
  551. ath_rc_priv->valid_phy_rateidx[phy]
  552. [ath_rc_priv->valid_phy_ratecnt[phy]] = j;
  553. ath_rc_priv->valid_phy_ratecnt[phy] += 1;
  554. ath_rc_set_valid_txmask(ath_rc_priv, j, 1);
  555. hi = A_MAX(hi, j);
  556. }
  557. }
  558. return hi;
  559. }
  560. static u8 ath_rc_ratefind_ht(struct ath_softc *sc,
  561. struct ath_rate_priv *ath_rc_priv,
  562. const struct ath_rate_table *rate_table,
  563. int *is_probing)
  564. {
  565. u32 dt, best_thruput, this_thruput, now_msec;
  566. u8 rate, next_rate, best_rate, maxindex, minindex;
  567. int8_t rssi_last, rssi_reduce = 0, index = 0;
  568. *is_probing = 0;
  569. rssi_last = median(ath_rc_priv->rssi_last,
  570. ath_rc_priv->rssi_last_prev,
  571. ath_rc_priv->rssi_last_prev2);
  572. /*
  573. * Age (reduce) last ack rssi based on how old it is.
  574. * The bizarre numbers are so the delta is 160msec,
  575. * meaning we divide by 16.
  576. * 0msec <= dt <= 25msec: don't derate
  577. * 25msec <= dt <= 185msec: derate linearly from 0 to 10dB
  578. * 185msec <= dt: derate by 10dB
  579. */
  580. now_msec = jiffies_to_msecs(jiffies);
  581. dt = now_msec - ath_rc_priv->rssi_time;
  582. if (dt >= 185)
  583. rssi_reduce = 10;
  584. else if (dt >= 25)
  585. rssi_reduce = (u8)((dt - 25) >> 4);
  586. /* Now reduce rssi_last by rssi_reduce */
  587. if (rssi_last < rssi_reduce)
  588. rssi_last = 0;
  589. else
  590. rssi_last -= rssi_reduce;
  591. /*
  592. * Now look up the rate in the rssi table and return it.
  593. * If no rates match then we return 0 (lowest rate)
  594. */
  595. best_thruput = 0;
  596. maxindex = ath_rc_priv->max_valid_rate-1;
  597. minindex = 0;
  598. best_rate = minindex;
  599. /*
  600. * Try the higher rate first. It will reduce memory moving time
  601. * if we have very good channel characteristics.
  602. */
  603. for (index = maxindex; index >= minindex ; index--) {
  604. u8 per_thres;
  605. rate = ath_rc_priv->valid_rate_index[index];
  606. if (rate > ath_rc_priv->rate_max_phy)
  607. continue;
  608. /*
  609. * For TCP the average collision rate is around 11%,
  610. * so we ignore PERs less than this. This is to
  611. * prevent the rate we are currently using (whose
  612. * PER might be in the 10-15 range because of TCP
  613. * collisions) looking worse than the next lower
  614. * rate whose PER has decayed close to 0. If we
  615. * used to next lower rate, its PER would grow to
  616. * 10-15 and we would be worse off then staying
  617. * at the current rate.
  618. */
  619. per_thres = ath_rc_priv->state[rate].per;
  620. if (per_thres < 12)
  621. per_thres = 12;
  622. this_thruput = rate_table->info[rate].user_ratekbps *
  623. (100 - per_thres);
  624. if (best_thruput <= this_thruput) {
  625. best_thruput = this_thruput;
  626. best_rate = rate;
  627. }
  628. }
  629. rate = best_rate;
  630. ath_rc_priv->rssi_last_lookup = rssi_last;
  631. /*
  632. * Must check the actual rate (ratekbps) to account for
  633. * non-monoticity of 11g's rate table
  634. */
  635. if (rate >= ath_rc_priv->rate_max_phy) {
  636. rate = ath_rc_priv->rate_max_phy;
  637. /* Probe the next allowed phy state */
  638. if (ath_rc_get_nextvalid_txrate(rate_table,
  639. ath_rc_priv, rate, &next_rate) &&
  640. (now_msec - ath_rc_priv->probe_time >
  641. rate_table->probe_interval) &&
  642. (ath_rc_priv->hw_maxretry_pktcnt >= 1)) {
  643. rate = next_rate;
  644. ath_rc_priv->probe_rate = rate;
  645. ath_rc_priv->probe_time = now_msec;
  646. ath_rc_priv->hw_maxretry_pktcnt = 0;
  647. *is_probing = 1;
  648. }
  649. }
  650. if (rate > (ath_rc_priv->rate_table_size - 1))
  651. rate = ath_rc_priv->rate_table_size - 1;
  652. if (rate_table->info[rate].valid &&
  653. (ath_rc_priv->ht_cap & WLAN_RC_DS_FLAG))
  654. return rate;
  655. if (rate_table->info[rate].valid_single_stream &&
  656. !(ath_rc_priv->ht_cap & WLAN_RC_DS_FLAG));
  657. return rate;
  658. /* This should not happen */
  659. WARN_ON(1);
  660. rate = ath_rc_priv->valid_rate_index[0];
  661. return rate;
  662. }
  663. static void ath_rc_rate_set_series(const struct ath_rate_table *rate_table,
  664. struct ieee80211_tx_rate *rate,
  665. struct ieee80211_tx_rate_control *txrc,
  666. u8 tries, u8 rix, int rtsctsenable)
  667. {
  668. rate->count = tries;
  669. rate->idx = rix;
  670. if (txrc->short_preamble)
  671. rate->flags |= IEEE80211_TX_RC_USE_SHORT_PREAMBLE;
  672. if (txrc->rts || rtsctsenable)
  673. rate->flags |= IEEE80211_TX_RC_USE_RTS_CTS;
  674. if (WLAN_RC_PHY_40(rate_table->info[rix].phy))
  675. rate->flags |= IEEE80211_TX_RC_40_MHZ_WIDTH;
  676. if (WLAN_RC_PHY_SGI(rate_table->info[rix].phy))
  677. rate->flags |= IEEE80211_TX_RC_SHORT_GI;
  678. if (WLAN_RC_PHY_HT(rate_table->info[rix].phy))
  679. rate->flags |= IEEE80211_TX_RC_MCS;
  680. }
  681. static void ath_rc_rate_set_rtscts(struct ath_softc *sc,
  682. const struct ath_rate_table *rate_table,
  683. struct ieee80211_tx_info *tx_info)
  684. {
  685. struct ieee80211_tx_rate *rates = tx_info->control.rates;
  686. int i = 0, rix = 0, cix, enable_g_protection = 0;
  687. /* get the cix for the lowest valid rix */
  688. for (i = 3; i >= 0; i--) {
  689. if (rates[i].count && (rates[i].idx >= 0)) {
  690. rix = rates[i].idx;
  691. break;
  692. }
  693. }
  694. cix = rate_table->info[rix].ctrl_rate;
  695. /* All protection frames are transmited at 2Mb/s for 802.11g,
  696. * otherwise we transmit them at 1Mb/s */
  697. if (sc->hw->conf.channel->band == IEEE80211_BAND_2GHZ &&
  698. !conf_is_ht(&sc->hw->conf))
  699. enable_g_protection = 1;
  700. /*
  701. * If 802.11g protection is enabled, determine whether to use RTS/CTS or
  702. * just CTS. Note that this is only done for OFDM/HT unicast frames.
  703. */
  704. if ((sc->sc_flags & SC_OP_PROTECT_ENABLE) &&
  705. !(tx_info->flags & IEEE80211_TX_CTL_NO_ACK) &&
  706. (rate_table->info[rix].phy == WLAN_RC_PHY_OFDM ||
  707. WLAN_RC_PHY_HT(rate_table->info[rix].phy))) {
  708. rates[0].flags |= IEEE80211_TX_RC_USE_CTS_PROTECT;
  709. cix = rate_table->info[enable_g_protection].ctrl_rate;
  710. }
  711. tx_info->control.rts_cts_rate_idx = cix;
  712. }
  713. static void ath_rc_ratefind(struct ath_softc *sc,
  714. struct ath_rate_priv *ath_rc_priv,
  715. struct ieee80211_tx_rate_control *txrc)
  716. {
  717. const struct ath_rate_table *rate_table;
  718. struct sk_buff *skb = txrc->skb;
  719. struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
  720. struct ieee80211_tx_rate *rates = tx_info->control.rates;
  721. struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
  722. __le16 fc = hdr->frame_control;
  723. u8 try_per_rate, i = 0, rix, nrix;
  724. int is_probe = 0;
  725. /*
  726. * For Multi Rate Retry we use a different number of
  727. * retry attempt counts. This ends up looking like this:
  728. *
  729. * MRR[0] = 2
  730. * MRR[1] = 2
  731. * MRR[2] = 2
  732. * MRR[3] = 4
  733. *
  734. */
  735. try_per_rate = sc->hw->max_rate_tries;
  736. rate_table = sc->cur_rate_table;
  737. rix = ath_rc_ratefind_ht(sc, ath_rc_priv, rate_table, &is_probe);
  738. nrix = rix;
  739. if (is_probe) {
  740. /* set one try for probe rates. For the
  741. * probes don't enable rts */
  742. ath_rc_rate_set_series(rate_table, &rates[i++], txrc,
  743. 1, nrix, 0);
  744. /* Get the next tried/allowed rate. No RTS for the next series
  745. * after the probe rate
  746. */
  747. ath_rc_get_lower_rix(rate_table, ath_rc_priv, rix, &nrix);
  748. ath_rc_rate_set_series(rate_table, &rates[i++], txrc,
  749. try_per_rate, nrix, 0);
  750. tx_info->flags |= IEEE80211_TX_CTL_RATE_CTRL_PROBE;
  751. } else {
  752. /* Set the choosen rate. No RTS for first series entry. */
  753. ath_rc_rate_set_series(rate_table, &rates[i++], txrc,
  754. try_per_rate, nrix, 0);
  755. }
  756. /* Fill in the other rates for multirate retry */
  757. for ( ; i < 4; i++) {
  758. /* Use twice the number of tries for the last MRR segment. */
  759. if (i + 1 == 4)
  760. try_per_rate = 4;
  761. ath_rc_get_lower_rix(rate_table, ath_rc_priv, rix, &nrix);
  762. /* All other rates in the series have RTS enabled */
  763. ath_rc_rate_set_series(rate_table, &rates[i], txrc,
  764. try_per_rate, nrix, 1);
  765. }
  766. /*
  767. * NB:Change rate series to enable aggregation when operating
  768. * at lower MCS rates. When first rate in series is MCS2
  769. * in HT40 @ 2.4GHz, series should look like:
  770. *
  771. * {MCS2, MCS1, MCS0, MCS0}.
  772. *
  773. * When first rate in series is MCS3 in HT20 @ 2.4GHz, series should
  774. * look like:
  775. *
  776. * {MCS3, MCS2, MCS1, MCS1}
  777. *
  778. * So, set fourth rate in series to be same as third one for
  779. * above conditions.
  780. */
  781. if ((sc->hw->conf.channel->band == IEEE80211_BAND_2GHZ) &&
  782. (conf_is_ht(&sc->hw->conf))) {
  783. u8 dot11rate = rate_table->info[rix].dot11rate;
  784. u8 phy = rate_table->info[rix].phy;
  785. if (i == 4 &&
  786. ((dot11rate == 2 && phy == WLAN_RC_PHY_HT_40_SS) ||
  787. (dot11rate == 3 && phy == WLAN_RC_PHY_HT_20_SS))) {
  788. rates[3].idx = rates[2].idx;
  789. rates[3].flags = rates[2].flags;
  790. }
  791. }
  792. /*
  793. * Force hardware to use computed duration for next
  794. * fragment by disabling multi-rate retry, which
  795. * updates duration based on the multi-rate duration table.
  796. *
  797. * FIXME: Fix duration
  798. */
  799. if (!(tx_info->flags & IEEE80211_TX_CTL_NO_ACK) &&
  800. (ieee80211_has_morefrags(fc) ||
  801. (le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_FRAG))) {
  802. rates[1].count = rates[2].count = rates[3].count = 0;
  803. rates[1].idx = rates[2].idx = rates[3].idx = 0;
  804. rates[0].count = ATH_TXMAXTRY;
  805. }
  806. /* Setup RTS/CTS */
  807. ath_rc_rate_set_rtscts(sc, rate_table, tx_info);
  808. }
  809. static bool ath_rc_update_per(struct ath_softc *sc,
  810. const struct ath_rate_table *rate_table,
  811. struct ath_rate_priv *ath_rc_priv,
  812. struct ath_tx_info_priv *tx_info_priv,
  813. int tx_rate, int xretries, int retries,
  814. u32 now_msec)
  815. {
  816. bool state_change = false;
  817. int count;
  818. u8 last_per;
  819. static u32 nretry_to_per_lookup[10] = {
  820. 100 * 0 / 1,
  821. 100 * 1 / 4,
  822. 100 * 1 / 2,
  823. 100 * 3 / 4,
  824. 100 * 4 / 5,
  825. 100 * 5 / 6,
  826. 100 * 6 / 7,
  827. 100 * 7 / 8,
  828. 100 * 8 / 9,
  829. 100 * 9 / 10
  830. };
  831. last_per = ath_rc_priv->state[tx_rate].per;
  832. if (xretries) {
  833. if (xretries == 1) {
  834. ath_rc_priv->state[tx_rate].per += 30;
  835. if (ath_rc_priv->state[tx_rate].per > 100)
  836. ath_rc_priv->state[tx_rate].per = 100;
  837. } else {
  838. /* xretries == 2 */
  839. count = ARRAY_SIZE(nretry_to_per_lookup);
  840. if (retries >= count)
  841. retries = count - 1;
  842. /* new_PER = 7/8*old_PER + 1/8*(currentPER) */
  843. ath_rc_priv->state[tx_rate].per =
  844. (u8)(last_per - (last_per >> 3) + (100 >> 3));
  845. }
  846. /* xretries == 1 or 2 */
  847. if (ath_rc_priv->probe_rate == tx_rate)
  848. ath_rc_priv->probe_rate = 0;
  849. } else { /* xretries == 0 */
  850. count = ARRAY_SIZE(nretry_to_per_lookup);
  851. if (retries >= count)
  852. retries = count - 1;
  853. if (tx_info_priv->n_bad_frames) {
  854. /* new_PER = 7/8*old_PER + 1/8*(currentPER)
  855. * Assuming that n_frames is not 0. The current PER
  856. * from the retries is 100 * retries / (retries+1),
  857. * since the first retries attempts failed, and the
  858. * next one worked. For the one that worked,
  859. * n_bad_frames subframes out of n_frames wored,
  860. * so the PER for that part is
  861. * 100 * n_bad_frames / n_frames, and it contributes
  862. * 100 * n_bad_frames / (n_frames * (retries+1)) to
  863. * the above PER. The expression below is a
  864. * simplified version of the sum of these two terms.
  865. */
  866. if (tx_info_priv->n_frames > 0) {
  867. int n_frames, n_bad_frames;
  868. u8 cur_per, new_per;
  869. n_bad_frames = retries * tx_info_priv->n_frames +
  870. tx_info_priv->n_bad_frames;
  871. n_frames = tx_info_priv->n_frames * (retries + 1);
  872. cur_per = (100 * n_bad_frames / n_frames) >> 3;
  873. new_per = (u8)(last_per - (last_per >> 3) + cur_per);
  874. ath_rc_priv->state[tx_rate].per = new_per;
  875. }
  876. } else {
  877. ath_rc_priv->state[tx_rate].per =
  878. (u8)(last_per - (last_per >> 3) +
  879. (nretry_to_per_lookup[retries] >> 3));
  880. }
  881. ath_rc_priv->rssi_last_prev2 = ath_rc_priv->rssi_last_prev;
  882. ath_rc_priv->rssi_last_prev = ath_rc_priv->rssi_last;
  883. ath_rc_priv->rssi_last = tx_info_priv->tx.ts_rssi;
  884. ath_rc_priv->rssi_time = now_msec;
  885. /*
  886. * If we got at most one retry then increase the max rate if
  887. * this was a probe. Otherwise, ignore the probe.
  888. */
  889. if (ath_rc_priv->probe_rate && ath_rc_priv->probe_rate == tx_rate) {
  890. if (retries > 0 || 2 * tx_info_priv->n_bad_frames >
  891. tx_info_priv->n_frames) {
  892. /*
  893. * Since we probed with just a single attempt,
  894. * any retries means the probe failed. Also,
  895. * if the attempt worked, but more than half
  896. * the subframes were bad then also consider
  897. * the probe a failure.
  898. */
  899. ath_rc_priv->probe_rate = 0;
  900. } else {
  901. u8 probe_rate = 0;
  902. ath_rc_priv->rate_max_phy =
  903. ath_rc_priv->probe_rate;
  904. probe_rate = ath_rc_priv->probe_rate;
  905. if (ath_rc_priv->state[probe_rate].per > 30)
  906. ath_rc_priv->state[probe_rate].per = 20;
  907. ath_rc_priv->probe_rate = 0;
  908. /*
  909. * Since this probe succeeded, we allow the next
  910. * probe twice as soon. This allows the maxRate
  911. * to move up faster if the probes are
  912. * succesful.
  913. */
  914. ath_rc_priv->probe_time =
  915. now_msec - rate_table->probe_interval / 2;
  916. }
  917. }
  918. if (retries > 0) {
  919. /*
  920. * Don't update anything. We don't know if
  921. * this was because of collisions or poor signal.
  922. *
  923. * Later: if rssi_ack is close to
  924. * ath_rc_priv->state[txRate].rssi_thres and we see lots
  925. * of retries, then we could increase
  926. * ath_rc_priv->state[txRate].rssi_thres.
  927. */
  928. ath_rc_priv->hw_maxretry_pktcnt = 0;
  929. } else {
  930. int32_t rssi_ackAvg;
  931. int8_t rssi_thres;
  932. int8_t rssi_ack_vmin;
  933. /*
  934. * It worked with no retries. First ignore bogus (small)
  935. * rssi_ack values.
  936. */
  937. if (tx_rate == ath_rc_priv->rate_max_phy &&
  938. ath_rc_priv->hw_maxretry_pktcnt < 255) {
  939. ath_rc_priv->hw_maxretry_pktcnt++;
  940. }
  941. if (tx_info_priv->tx.ts_rssi <
  942. rate_table->info[tx_rate].rssi_ack_validmin)
  943. goto exit;
  944. /* Average the rssi */
  945. if (tx_rate != ath_rc_priv->rssi_sum_rate) {
  946. ath_rc_priv->rssi_sum_rate = tx_rate;
  947. ath_rc_priv->rssi_sum =
  948. ath_rc_priv->rssi_sum_cnt = 0;
  949. }
  950. ath_rc_priv->rssi_sum += tx_info_priv->tx.ts_rssi;
  951. ath_rc_priv->rssi_sum_cnt++;
  952. if (ath_rc_priv->rssi_sum_cnt < 4)
  953. goto exit;
  954. rssi_ackAvg =
  955. (ath_rc_priv->rssi_sum + 2) / 4;
  956. rssi_thres =
  957. ath_rc_priv->state[tx_rate].rssi_thres;
  958. rssi_ack_vmin =
  959. rate_table->info[tx_rate].rssi_ack_validmin;
  960. ath_rc_priv->rssi_sum =
  961. ath_rc_priv->rssi_sum_cnt = 0;
  962. /* Now reduce the current rssi threshold */
  963. if ((rssi_ackAvg < rssi_thres + 2) &&
  964. (rssi_thres > rssi_ack_vmin)) {
  965. ath_rc_priv->state[tx_rate].rssi_thres--;
  966. }
  967. state_change = true;
  968. }
  969. }
  970. exit:
  971. return state_change;
  972. }
  973. /* Update PER, RSSI and whatever else that the code thinks it is doing.
  974. If you can make sense of all this, you really need to go out more. */
  975. static void ath_rc_update_ht(struct ath_softc *sc,
  976. struct ath_rate_priv *ath_rc_priv,
  977. struct ath_tx_info_priv *tx_info_priv,
  978. int tx_rate, int xretries, int retries)
  979. {
  980. #define CHK_RSSI(rate) \
  981. ((ath_rc_priv->state[(rate)].rssi_thres + \
  982. rate_table->info[(rate)].rssi_ack_deltamin) > \
  983. ath_rc_priv->state[(rate)+1].rssi_thres)
  984. u32 now_msec = jiffies_to_msecs(jiffies);
  985. int rate;
  986. u8 last_per;
  987. bool state_change = false;
  988. const struct ath_rate_table *rate_table = sc->cur_rate_table;
  989. int size = ath_rc_priv->rate_table_size;
  990. if ((tx_rate < 0) || (tx_rate > rate_table->rate_cnt))
  991. return;
  992. /* To compensate for some imbalance between ctrl and ext. channel */
  993. if (WLAN_RC_PHY_40(rate_table->info[tx_rate].phy))
  994. tx_info_priv->tx.ts_rssi =
  995. tx_info_priv->tx.ts_rssi < 3 ? 0 :
  996. tx_info_priv->tx.ts_rssi - 3;
  997. last_per = ath_rc_priv->state[tx_rate].per;
  998. /* Update PER first */
  999. state_change = ath_rc_update_per(sc, rate_table, ath_rc_priv,
  1000. tx_info_priv, tx_rate, xretries,
  1001. retries, now_msec);
  1002. /*
  1003. * If this rate looks bad (high PER) then stop using it for
  1004. * a while (except if we are probing).
  1005. */
  1006. if (ath_rc_priv->state[tx_rate].per >= 55 && tx_rate > 0 &&
  1007. rate_table->info[tx_rate].ratekbps <=
  1008. rate_table->info[ath_rc_priv->rate_max_phy].ratekbps) {
  1009. ath_rc_get_lower_rix(rate_table, ath_rc_priv,
  1010. (u8)tx_rate, &ath_rc_priv->rate_max_phy);
  1011. /* Don't probe for a little while. */
  1012. ath_rc_priv->probe_time = now_msec;
  1013. }
  1014. if (state_change) {
  1015. /*
  1016. * Make sure the rates above this have higher rssi thresholds.
  1017. * (Note: Monotonicity is kept within the OFDM rates and
  1018. * within the CCK rates. However, no adjustment is
  1019. * made to keep the rssi thresholds monotonically
  1020. * increasing between the CCK and OFDM rates.)
  1021. */
  1022. for (rate = tx_rate; rate < size - 1; rate++) {
  1023. if (rate_table->info[rate+1].phy !=
  1024. rate_table->info[tx_rate].phy)
  1025. break;
  1026. if (CHK_RSSI(rate)) {
  1027. ath_rc_priv->state[rate+1].rssi_thres =
  1028. ath_rc_priv->state[rate].rssi_thres +
  1029. rate_table->info[rate].rssi_ack_deltamin;
  1030. }
  1031. }
  1032. /* Make sure the rates below this have lower rssi thresholds. */
  1033. for (rate = tx_rate - 1; rate >= 0; rate--) {
  1034. if (rate_table->info[rate].phy !=
  1035. rate_table->info[tx_rate].phy)
  1036. break;
  1037. if (CHK_RSSI(rate)) {
  1038. if (ath_rc_priv->state[rate+1].rssi_thres <
  1039. rate_table->info[rate].rssi_ack_deltamin)
  1040. ath_rc_priv->state[rate].rssi_thres = 0;
  1041. else {
  1042. ath_rc_priv->state[rate].rssi_thres =
  1043. ath_rc_priv->state[rate+1].rssi_thres -
  1044. rate_table->info[rate].rssi_ack_deltamin;
  1045. }
  1046. if (ath_rc_priv->state[rate].rssi_thres <
  1047. rate_table->info[rate].rssi_ack_validmin) {
  1048. ath_rc_priv->state[rate].rssi_thres =
  1049. rate_table->info[rate].rssi_ack_validmin;
  1050. }
  1051. }
  1052. }
  1053. }
  1054. /* Make sure the rates below this have lower PER */
  1055. /* Monotonicity is kept only for rates below the current rate. */
  1056. if (ath_rc_priv->state[tx_rate].per < last_per) {
  1057. for (rate = tx_rate - 1; rate >= 0; rate--) {
  1058. if (rate_table->info[rate].phy !=
  1059. rate_table->info[tx_rate].phy)
  1060. break;
  1061. if (ath_rc_priv->state[rate].per >
  1062. ath_rc_priv->state[rate+1].per) {
  1063. ath_rc_priv->state[rate].per =
  1064. ath_rc_priv->state[rate+1].per;
  1065. }
  1066. }
  1067. }
  1068. /* Maintain monotonicity for rates above the current rate */
  1069. for (rate = tx_rate; rate < size - 1; rate++) {
  1070. if (ath_rc_priv->state[rate+1].per <
  1071. ath_rc_priv->state[rate].per)
  1072. ath_rc_priv->state[rate+1].per =
  1073. ath_rc_priv->state[rate].per;
  1074. }
  1075. /* Every so often, we reduce the thresholds and
  1076. * PER (different for CCK and OFDM). */
  1077. if (now_msec - ath_rc_priv->rssi_down_time >=
  1078. rate_table->rssi_reduce_interval) {
  1079. for (rate = 0; rate < size; rate++) {
  1080. if (ath_rc_priv->state[rate].rssi_thres >
  1081. rate_table->info[rate].rssi_ack_validmin)
  1082. ath_rc_priv->state[rate].rssi_thres -= 1;
  1083. }
  1084. ath_rc_priv->rssi_down_time = now_msec;
  1085. }
  1086. /* Every so often, we reduce the thresholds
  1087. * and PER (different for CCK and OFDM). */
  1088. if (now_msec - ath_rc_priv->per_down_time >=
  1089. rate_table->rssi_reduce_interval) {
  1090. for (rate = 0; rate < size; rate++) {
  1091. ath_rc_priv->state[rate].per =
  1092. 7 * ath_rc_priv->state[rate].per / 8;
  1093. }
  1094. ath_rc_priv->per_down_time = now_msec;
  1095. }
  1096. ath_debug_stat_retries(sc, tx_rate, xretries, retries,
  1097. ath_rc_priv->state[tx_rate].per);
  1098. #undef CHK_RSSI
  1099. }
  1100. static int ath_rc_get_rateindex(const struct ath_rate_table *rate_table,
  1101. struct ieee80211_tx_rate *rate)
  1102. {
  1103. int rix;
  1104. if ((rate->flags & IEEE80211_TX_RC_40_MHZ_WIDTH) &&
  1105. (rate->flags & IEEE80211_TX_RC_SHORT_GI))
  1106. rix = rate_table->info[rate->idx].ht_index;
  1107. else if (rate->flags & IEEE80211_TX_RC_SHORT_GI)
  1108. rix = rate_table->info[rate->idx].sgi_index;
  1109. else if (rate->flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
  1110. rix = rate_table->info[rate->idx].cw40index;
  1111. else
  1112. rix = rate_table->info[rate->idx].base_index;
  1113. return rix;
  1114. }
  1115. static void ath_rc_tx_status(struct ath_softc *sc,
  1116. struct ath_rate_priv *ath_rc_priv,
  1117. struct ieee80211_tx_info *tx_info,
  1118. int final_ts_idx, int xretries, int long_retry)
  1119. {
  1120. struct ath_tx_info_priv *tx_info_priv = ATH_TX_INFO_PRIV(tx_info);
  1121. const struct ath_rate_table *rate_table;
  1122. struct ieee80211_tx_rate *rates = tx_info->status.rates;
  1123. u8 flags;
  1124. u32 i = 0, rix;
  1125. rate_table = sc->cur_rate_table;
  1126. /*
  1127. * If the first rate is not the final index, there
  1128. * are intermediate rate failures to be processed.
  1129. */
  1130. if (final_ts_idx != 0) {
  1131. /* Process intermediate rates that failed.*/
  1132. for (i = 0; i < final_ts_idx ; i++) {
  1133. if (rates[i].count != 0 && (rates[i].idx >= 0)) {
  1134. flags = rates[i].flags;
  1135. /* If HT40 and we have switched mode from
  1136. * 40 to 20 => don't update */
  1137. if ((flags & IEEE80211_TX_RC_40_MHZ_WIDTH) &&
  1138. !(ath_rc_priv->ht_cap & WLAN_RC_40_FLAG))
  1139. return;
  1140. rix = ath_rc_get_rateindex(rate_table, &rates[i]);
  1141. ath_rc_update_ht(sc, ath_rc_priv,
  1142. tx_info_priv, rix,
  1143. xretries ? 1 : 2,
  1144. rates[i].count);
  1145. }
  1146. }
  1147. } else {
  1148. /*
  1149. * Handle the special case of MIMO PS burst, where the second
  1150. * aggregate is sent out with only one rate and one try.
  1151. * Treating it as an excessive retry penalizes the rate
  1152. * inordinately.
  1153. */
  1154. if (rates[0].count == 1 && xretries == 1)
  1155. xretries = 2;
  1156. }
  1157. flags = rates[i].flags;
  1158. /* If HT40 and we have switched mode from 40 to 20 => don't update */
  1159. if ((flags & IEEE80211_TX_RC_40_MHZ_WIDTH) &&
  1160. !(ath_rc_priv->ht_cap & WLAN_RC_40_FLAG))
  1161. return;
  1162. rix = ath_rc_get_rateindex(rate_table, &rates[i]);
  1163. ath_rc_update_ht(sc, ath_rc_priv, tx_info_priv, rix,
  1164. xretries, long_retry);
  1165. }
  1166. static const
  1167. struct ath_rate_table *ath_choose_rate_table(struct ath_softc *sc,
  1168. enum ieee80211_band band,
  1169. bool is_ht,
  1170. bool is_cw_40)
  1171. {
  1172. int mode = 0;
  1173. switch(band) {
  1174. case IEEE80211_BAND_2GHZ:
  1175. mode = ATH9K_MODE_11G;
  1176. if (is_ht)
  1177. mode = ATH9K_MODE_11NG_HT20;
  1178. if (is_cw_40)
  1179. mode = ATH9K_MODE_11NG_HT40PLUS;
  1180. break;
  1181. case IEEE80211_BAND_5GHZ:
  1182. mode = ATH9K_MODE_11A;
  1183. if (is_ht)
  1184. mode = ATH9K_MODE_11NA_HT20;
  1185. if (is_cw_40)
  1186. mode = ATH9K_MODE_11NA_HT40PLUS;
  1187. break;
  1188. default:
  1189. DPRINTF(sc, ATH_DBG_CONFIG, "Invalid band\n");
  1190. return NULL;
  1191. }
  1192. BUG_ON(mode >= ATH9K_MODE_MAX);
  1193. DPRINTF(sc, ATH_DBG_CONFIG, "Choosing rate table for mode: %d\n", mode);
  1194. return sc->hw_rate_table[mode];
  1195. }
  1196. static void ath_rc_init(struct ath_softc *sc,
  1197. struct ath_rate_priv *ath_rc_priv,
  1198. struct ieee80211_supported_band *sband,
  1199. struct ieee80211_sta *sta,
  1200. const struct ath_rate_table *rate_table)
  1201. {
  1202. struct ath_rateset *rateset = &ath_rc_priv->neg_rates;
  1203. u8 *ht_mcs = (u8 *)&ath_rc_priv->neg_ht_rates;
  1204. u8 i, j, k, hi = 0, hthi = 0;
  1205. if (!rate_table) {
  1206. DPRINTF(sc, ATH_DBG_FATAL, "Rate table not initialized\n");
  1207. return;
  1208. }
  1209. /* Initial rate table size. Will change depending
  1210. * on the working rate set */
  1211. ath_rc_priv->rate_table_size = RATE_TABLE_SIZE;
  1212. /* Initialize thresholds according to the global rate table */
  1213. for (i = 0 ; i < ath_rc_priv->rate_table_size; i++) {
  1214. ath_rc_priv->state[i].rssi_thres =
  1215. rate_table->info[i].rssi_ack_validmin;
  1216. ath_rc_priv->state[i].per = 0;
  1217. }
  1218. /* Determine the valid rates */
  1219. ath_rc_init_valid_txmask(ath_rc_priv);
  1220. for (i = 0; i < WLAN_RC_PHY_MAX; i++) {
  1221. for (j = 0; j < MAX_TX_RATE_PHY; j++)
  1222. ath_rc_priv->valid_phy_rateidx[i][j] = 0;
  1223. ath_rc_priv->valid_phy_ratecnt[i] = 0;
  1224. }
  1225. if (!rateset->rs_nrates) {
  1226. /* No working rate, just initialize valid rates */
  1227. hi = ath_rc_init_validrates(ath_rc_priv, rate_table,
  1228. ath_rc_priv->ht_cap);
  1229. } else {
  1230. /* Use intersection of working rates and valid rates */
  1231. hi = ath_rc_setvalid_rates(ath_rc_priv, rate_table,
  1232. rateset, ath_rc_priv->ht_cap);
  1233. if (ath_rc_priv->ht_cap & WLAN_RC_HT_FLAG) {
  1234. hthi = ath_rc_setvalid_htrates(ath_rc_priv,
  1235. rate_table,
  1236. ht_mcs,
  1237. ath_rc_priv->ht_cap);
  1238. }
  1239. hi = A_MAX(hi, hthi);
  1240. }
  1241. ath_rc_priv->rate_table_size = hi + 1;
  1242. ath_rc_priv->rate_max_phy = 0;
  1243. ASSERT(ath_rc_priv->rate_table_size <= RATE_TABLE_SIZE);
  1244. for (i = 0, k = 0; i < WLAN_RC_PHY_MAX; i++) {
  1245. for (j = 0; j < ath_rc_priv->valid_phy_ratecnt[i]; j++) {
  1246. ath_rc_priv->valid_rate_index[k++] =
  1247. ath_rc_priv->valid_phy_rateidx[i][j];
  1248. }
  1249. if (!ath_rc_valid_phyrate(i, rate_table->initial_ratemax, 1)
  1250. || !ath_rc_priv->valid_phy_ratecnt[i])
  1251. continue;
  1252. ath_rc_priv->rate_max_phy = ath_rc_priv->valid_phy_rateidx[i][j-1];
  1253. }
  1254. ASSERT(ath_rc_priv->rate_table_size <= RATE_TABLE_SIZE);
  1255. ASSERT(k <= RATE_TABLE_SIZE);
  1256. ath_rc_priv->max_valid_rate = k;
  1257. ath_rc_sort_validrates(rate_table, ath_rc_priv);
  1258. ath_rc_priv->rate_max_phy = ath_rc_priv->valid_rate_index[k-4];
  1259. sc->cur_rate_table = rate_table;
  1260. DPRINTF(sc, ATH_DBG_CONFIG, "RC Initialized with capabilities: 0x%x\n",
  1261. ath_rc_priv->ht_cap);
  1262. }
  1263. static u8 ath_rc_build_ht_caps(struct ath_softc *sc, struct ieee80211_sta *sta,
  1264. bool is_cw40, bool is_sgi40)
  1265. {
  1266. u8 caps = 0;
  1267. if (sta->ht_cap.ht_supported) {
  1268. caps = WLAN_RC_HT_FLAG;
  1269. if (sc->sc_ah->caps.tx_chainmask != 1 &&
  1270. ath9k_hw_getcapability(sc->sc_ah, ATH9K_CAP_DS, 0, NULL)) {
  1271. if (sta->ht_cap.mcs.rx_mask[1])
  1272. caps |= WLAN_RC_DS_FLAG;
  1273. }
  1274. if (is_cw40)
  1275. caps |= WLAN_RC_40_FLAG;
  1276. if (is_sgi40)
  1277. caps |= WLAN_RC_SGI_FLAG;
  1278. }
  1279. return caps;
  1280. }
  1281. /***********************************/
  1282. /* mac80211 Rate Control callbacks */
  1283. /***********************************/
  1284. static void ath_tx_status(void *priv, struct ieee80211_supported_band *sband,
  1285. struct ieee80211_sta *sta, void *priv_sta,
  1286. struct sk_buff *skb)
  1287. {
  1288. struct ath_softc *sc = priv;
  1289. struct ath_rate_priv *ath_rc_priv = priv_sta;
  1290. struct ath_tx_info_priv *tx_info_priv = NULL;
  1291. struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
  1292. struct ieee80211_hdr *hdr;
  1293. int final_ts_idx, tx_status = 0, is_underrun = 0;
  1294. __le16 fc;
  1295. hdr = (struct ieee80211_hdr *)skb->data;
  1296. fc = hdr->frame_control;
  1297. tx_info_priv = ATH_TX_INFO_PRIV(tx_info);
  1298. final_ts_idx = tx_info_priv->tx.ts_rateindex;
  1299. if (!priv_sta || !ieee80211_is_data(fc) ||
  1300. !tx_info_priv->update_rc)
  1301. goto exit;
  1302. if (tx_info_priv->tx.ts_status & ATH9K_TXERR_FILT)
  1303. goto exit;
  1304. /*
  1305. * If underrun error is seen assume it as an excessive retry only
  1306. * if prefetch trigger level have reached the max (0x3f for 5416)
  1307. * Adjust the long retry as if the frame was tried hw->max_rate_tries
  1308. * times. This affects how ratectrl updates PER for the failed rate.
  1309. */
  1310. if (tx_info_priv->tx.ts_flags &
  1311. (ATH9K_TX_DATA_UNDERRUN | ATH9K_TX_DELIM_UNDERRUN) &&
  1312. ((sc->sc_ah->tx_trig_level) >= ath_rc_priv->tx_triglevel_max)) {
  1313. tx_status = 1;
  1314. is_underrun = 1;
  1315. }
  1316. if ((tx_info_priv->tx.ts_status & ATH9K_TXERR_XRETRY) ||
  1317. (tx_info_priv->tx.ts_status & ATH9K_TXERR_FIFO))
  1318. tx_status = 1;
  1319. ath_rc_tx_status(sc, ath_rc_priv, tx_info, final_ts_idx, tx_status,
  1320. (is_underrun) ? sc->hw->max_rate_tries :
  1321. tx_info_priv->tx.ts_longretry);
  1322. /* Check if aggregation has to be enabled for this tid */
  1323. if (conf_is_ht(&sc->hw->conf) &&
  1324. !(skb->protocol == cpu_to_be16(ETH_P_PAE))) {
  1325. if (ieee80211_is_data_qos(fc)) {
  1326. u8 *qc, tid;
  1327. struct ath_node *an;
  1328. qc = ieee80211_get_qos_ctl(hdr);
  1329. tid = qc[0] & 0xf;
  1330. an = (struct ath_node *)sta->drv_priv;
  1331. if(ath_tx_aggr_check(sc, an, tid))
  1332. ieee80211_start_tx_ba_session(sc->hw, hdr->addr1, tid);
  1333. }
  1334. }
  1335. ath_debug_stat_rc(sc, skb);
  1336. exit:
  1337. kfree(tx_info_priv);
  1338. }
  1339. static void ath_get_rate(void *priv, struct ieee80211_sta *sta, void *priv_sta,
  1340. struct ieee80211_tx_rate_control *txrc)
  1341. {
  1342. struct ieee80211_supported_band *sband = txrc->sband;
  1343. struct sk_buff *skb = txrc->skb;
  1344. struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
  1345. struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
  1346. struct ath_softc *sc = priv;
  1347. struct ath_rate_priv *ath_rc_priv = priv_sta;
  1348. __le16 fc = hdr->frame_control;
  1349. /* lowest rate for management and NO_ACK frames */
  1350. if (!ieee80211_is_data(fc) ||
  1351. tx_info->flags & IEEE80211_TX_CTL_NO_ACK || !sta) {
  1352. tx_info->control.rates[0].idx = rate_lowest_index(sband, sta);
  1353. tx_info->control.rates[0].count =
  1354. (tx_info->flags & IEEE80211_TX_CTL_NO_ACK) ?
  1355. 1 : ATH_MGT_TXMAXTRY;
  1356. return;
  1357. }
  1358. /* Find tx rate for unicast frames */
  1359. ath_rc_ratefind(sc, ath_rc_priv, txrc);
  1360. }
  1361. static void ath_rate_init(void *priv, struct ieee80211_supported_band *sband,
  1362. struct ieee80211_sta *sta, void *priv_sta)
  1363. {
  1364. struct ath_softc *sc = priv;
  1365. struct ath_rate_priv *ath_rc_priv = priv_sta;
  1366. const struct ath_rate_table *rate_table = NULL;
  1367. bool is_cw40, is_sgi40;
  1368. int i, j = 0;
  1369. for (i = 0; i < sband->n_bitrates; i++) {
  1370. if (sta->supp_rates[sband->band] & BIT(i)) {
  1371. ath_rc_priv->neg_rates.rs_rates[j]
  1372. = (sband->bitrates[i].bitrate * 2) / 10;
  1373. j++;
  1374. }
  1375. }
  1376. ath_rc_priv->neg_rates.rs_nrates = j;
  1377. if (sta->ht_cap.ht_supported) {
  1378. for (i = 0, j = 0; i < 77; i++) {
  1379. if (sta->ht_cap.mcs.rx_mask[i/8] & (1<<(i%8)))
  1380. ath_rc_priv->neg_ht_rates.rs_rates[j++] = i;
  1381. if (j == ATH_RATE_MAX)
  1382. break;
  1383. }
  1384. ath_rc_priv->neg_ht_rates.rs_nrates = j;
  1385. }
  1386. is_cw40 = sta->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40;
  1387. is_sgi40 = sta->ht_cap.cap & IEEE80211_HT_CAP_SGI_40;
  1388. /* Choose rate table first */
  1389. if ((sc->sc_ah->opmode == NL80211_IFTYPE_STATION) ||
  1390. (sc->sc_ah->opmode == NL80211_IFTYPE_MESH_POINT) ||
  1391. (sc->sc_ah->opmode == NL80211_IFTYPE_ADHOC)) {
  1392. rate_table = ath_choose_rate_table(sc, sband->band,
  1393. sta->ht_cap.ht_supported,
  1394. is_cw40);
  1395. } else if (sc->sc_ah->opmode == NL80211_IFTYPE_AP) {
  1396. /* cur_rate_table would be set on init through config() */
  1397. rate_table = sc->cur_rate_table;
  1398. }
  1399. ath_rc_priv->ht_cap = ath_rc_build_ht_caps(sc, sta, is_cw40, is_sgi40);
  1400. ath_rc_init(sc, priv_sta, sband, sta, rate_table);
  1401. }
  1402. static void ath_rate_update(void *priv, struct ieee80211_supported_band *sband,
  1403. struct ieee80211_sta *sta, void *priv_sta,
  1404. u32 changed)
  1405. {
  1406. struct ath_softc *sc = priv;
  1407. struct ath_rate_priv *ath_rc_priv = priv_sta;
  1408. const struct ath_rate_table *rate_table = NULL;
  1409. bool oper_cw40 = false, oper_sgi40;
  1410. bool local_cw40 = (ath_rc_priv->ht_cap & WLAN_RC_40_FLAG) ?
  1411. true : false;
  1412. bool local_sgi40 = (ath_rc_priv->ht_cap & WLAN_RC_SGI_FLAG) ?
  1413. true : false;
  1414. /* FIXME: Handle AP mode later when we support CWM */
  1415. if (changed & IEEE80211_RC_HT_CHANGED) {
  1416. if (sc->sc_ah->opmode != NL80211_IFTYPE_STATION)
  1417. return;
  1418. if (sc->hw->conf.channel_type == NL80211_CHAN_HT40MINUS ||
  1419. sc->hw->conf.channel_type == NL80211_CHAN_HT40PLUS)
  1420. oper_cw40 = true;
  1421. oper_sgi40 = (sta->ht_cap.cap & IEEE80211_HT_CAP_SGI_40) ?
  1422. true : false;
  1423. if ((local_cw40 != oper_cw40) || (local_sgi40 != oper_sgi40)) {
  1424. rate_table = ath_choose_rate_table(sc, sband->band,
  1425. sta->ht_cap.ht_supported,
  1426. oper_cw40);
  1427. ath_rc_priv->ht_cap = ath_rc_build_ht_caps(sc, sta,
  1428. oper_cw40, oper_sgi40);
  1429. ath_rc_init(sc, priv_sta, sband, sta, rate_table);
  1430. DPRINTF(sc, ATH_DBG_CONFIG,
  1431. "Operating HT Bandwidth changed to: %d\n",
  1432. sc->hw->conf.channel_type);
  1433. }
  1434. }
  1435. }
  1436. static void *ath_rate_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
  1437. {
  1438. struct ath_wiphy *aphy = hw->priv;
  1439. return aphy->sc;
  1440. }
  1441. static void ath_rate_free(void *priv)
  1442. {
  1443. return;
  1444. }
  1445. static void *ath_rate_alloc_sta(void *priv, struct ieee80211_sta *sta, gfp_t gfp)
  1446. {
  1447. struct ath_softc *sc = priv;
  1448. struct ath_rate_priv *rate_priv;
  1449. rate_priv = kzalloc(sizeof(struct ath_rate_priv), gfp);
  1450. if (!rate_priv) {
  1451. DPRINTF(sc, ATH_DBG_FATAL,
  1452. "Unable to allocate private rc structure\n");
  1453. return NULL;
  1454. }
  1455. rate_priv->rssi_down_time = jiffies_to_msecs(jiffies);
  1456. rate_priv->tx_triglevel_max = sc->sc_ah->caps.tx_triglevel_max;
  1457. return rate_priv;
  1458. }
  1459. static void ath_rate_free_sta(void *priv, struct ieee80211_sta *sta,
  1460. void *priv_sta)
  1461. {
  1462. struct ath_rate_priv *rate_priv = priv_sta;
  1463. kfree(rate_priv);
  1464. }
  1465. static struct rate_control_ops ath_rate_ops = {
  1466. .module = NULL,
  1467. .name = "ath9k_rate_control",
  1468. .tx_status = ath_tx_status,
  1469. .get_rate = ath_get_rate,
  1470. .rate_init = ath_rate_init,
  1471. .rate_update = ath_rate_update,
  1472. .alloc = ath_rate_alloc,
  1473. .free = ath_rate_free,
  1474. .alloc_sta = ath_rate_alloc_sta,
  1475. .free_sta = ath_rate_free_sta,
  1476. };
  1477. void ath_rate_attach(struct ath_softc *sc)
  1478. {
  1479. sc->hw_rate_table[ATH9K_MODE_11A] =
  1480. &ar5416_11a_ratetable;
  1481. sc->hw_rate_table[ATH9K_MODE_11G] =
  1482. &ar5416_11g_ratetable;
  1483. sc->hw_rate_table[ATH9K_MODE_11NA_HT20] =
  1484. &ar5416_11na_ratetable;
  1485. sc->hw_rate_table[ATH9K_MODE_11NG_HT20] =
  1486. &ar5416_11ng_ratetable;
  1487. sc->hw_rate_table[ATH9K_MODE_11NA_HT40PLUS] =
  1488. &ar5416_11na_ratetable;
  1489. sc->hw_rate_table[ATH9K_MODE_11NA_HT40MINUS] =
  1490. &ar5416_11na_ratetable;
  1491. sc->hw_rate_table[ATH9K_MODE_11NG_HT40PLUS] =
  1492. &ar5416_11ng_ratetable;
  1493. sc->hw_rate_table[ATH9K_MODE_11NG_HT40MINUS] =
  1494. &ar5416_11ng_ratetable;
  1495. }
  1496. int ath_rate_control_register(void)
  1497. {
  1498. return ieee80211_rate_control_register(&ath_rate_ops);
  1499. }
  1500. void ath_rate_control_unregister(void)
  1501. {
  1502. ieee80211_rate_control_unregister(&ath_rate_ops);
  1503. }