80211.tmpl 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE set PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" []>
  4. <set>
  5. <setinfo>
  6. <title>The 802.11 subsystems &ndash; for kernel developers</title>
  7. <subtitle>
  8. Explaining wireless 802.11 networking in the Linux kernel
  9. </subtitle>
  10. <copyright>
  11. <year>2007-2009</year>
  12. <holder>Johannes Berg</holder>
  13. </copyright>
  14. <authorgroup>
  15. <author>
  16. <firstname>Johannes</firstname>
  17. <surname>Berg</surname>
  18. <affiliation>
  19. <address><email>johannes@sipsolutions.net</email></address>
  20. </affiliation>
  21. </author>
  22. </authorgroup>
  23. <legalnotice>
  24. <para>
  25. This documentation is free software; you can redistribute
  26. it and/or modify it under the terms of the GNU General Public
  27. License version 2 as published by the Free Software Foundation.
  28. </para>
  29. <para>
  30. This documentation is distributed in the hope that it will be
  31. useful, but WITHOUT ANY WARRANTY; without even the implied
  32. warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  33. See the GNU General Public License for more details.
  34. </para>
  35. <para>
  36. You should have received a copy of the GNU General Public
  37. License along with this documentation; if not, write to the Free
  38. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  39. MA 02111-1307 USA
  40. </para>
  41. <para>
  42. For more details see the file COPYING in the source
  43. distribution of Linux.
  44. </para>
  45. </legalnotice>
  46. <abstract>
  47. <para>
  48. These books attempt to give a description of the
  49. various subsystems that play a role in 802.11 wireless
  50. networking in Linux. Since these books are for kernel
  51. developers they attempts to document the structures
  52. and functions used in the kernel as well as giving a
  53. higher-level overview.
  54. </para>
  55. <para>
  56. The reader is expected to be familiar with the 802.11
  57. standard as published by the IEEE in 802.11-2007 (or
  58. possibly later versions). References to this standard
  59. will be given as "802.11-2007 8.1.5".
  60. </para>
  61. </abstract>
  62. </setinfo>
  63. <book id="cfg80211-developers-guide">
  64. <bookinfo>
  65. <title>The cfg80211 subsystem</title>
  66. <abstract>
  67. !Pinclude/net/cfg80211.h Introduction
  68. </abstract>
  69. </bookinfo>
  70. <chapter>
  71. <title>Device registration</title>
  72. !Pinclude/net/cfg80211.h Device registration
  73. !Finclude/net/cfg80211.h ieee80211_band
  74. !Finclude/net/cfg80211.h ieee80211_channel_flags
  75. !Finclude/net/cfg80211.h ieee80211_channel
  76. !Finclude/net/cfg80211.h ieee80211_rate_flags
  77. !Finclude/net/cfg80211.h ieee80211_rate
  78. !Finclude/net/cfg80211.h ieee80211_sta_ht_cap
  79. !Finclude/net/cfg80211.h ieee80211_supported_band
  80. !Finclude/net/cfg80211.h cfg80211_signal_type
  81. !Finclude/net/cfg80211.h wiphy_params_flags
  82. !Finclude/net/cfg80211.h wiphy_flags
  83. !Finclude/net/cfg80211.h wiphy
  84. !Finclude/net/cfg80211.h wireless_dev
  85. !Finclude/net/cfg80211.h wiphy_new
  86. !Finclude/net/cfg80211.h wiphy_register
  87. !Finclude/net/cfg80211.h wiphy_unregister
  88. !Finclude/net/cfg80211.h wiphy_free
  89. !Finclude/net/cfg80211.h wiphy_name
  90. !Finclude/net/cfg80211.h wiphy_dev
  91. !Finclude/net/cfg80211.h wiphy_priv
  92. !Finclude/net/cfg80211.h priv_to_wiphy
  93. !Finclude/net/cfg80211.h set_wiphy_dev
  94. !Finclude/net/cfg80211.h wdev_priv
  95. </chapter>
  96. <chapter>
  97. <title>Actions and configuration</title>
  98. !Pinclude/net/cfg80211.h Actions and configuration
  99. !Finclude/net/cfg80211.h cfg80211_ops
  100. !Finclude/net/cfg80211.h vif_params
  101. !Finclude/net/cfg80211.h key_params
  102. !Finclude/net/cfg80211.h survey_info_flags
  103. !Finclude/net/cfg80211.h survey_info
  104. !Finclude/net/cfg80211.h beacon_parameters
  105. !Finclude/net/cfg80211.h plink_actions
  106. !Finclude/net/cfg80211.h station_parameters
  107. !Finclude/net/cfg80211.h station_info_flags
  108. !Finclude/net/cfg80211.h rate_info_flags
  109. !Finclude/net/cfg80211.h rate_info
  110. !Finclude/net/cfg80211.h station_info
  111. !Finclude/net/cfg80211.h monitor_flags
  112. !Finclude/net/cfg80211.h mpath_info_flags
  113. !Finclude/net/cfg80211.h mpath_info
  114. !Finclude/net/cfg80211.h bss_parameters
  115. !Finclude/net/cfg80211.h ieee80211_txq_params
  116. !Finclude/net/cfg80211.h cfg80211_crypto_settings
  117. !Finclude/net/cfg80211.h cfg80211_auth_request
  118. !Finclude/net/cfg80211.h cfg80211_assoc_request
  119. !Finclude/net/cfg80211.h cfg80211_deauth_request
  120. !Finclude/net/cfg80211.h cfg80211_disassoc_request
  121. !Finclude/net/cfg80211.h cfg80211_ibss_params
  122. !Finclude/net/cfg80211.h cfg80211_connect_params
  123. !Finclude/net/cfg80211.h cfg80211_pmksa
  124. !Finclude/net/cfg80211.h cfg80211_send_rx_auth
  125. !Finclude/net/cfg80211.h cfg80211_send_auth_timeout
  126. !Finclude/net/cfg80211.h cfg80211_send_rx_assoc
  127. !Finclude/net/cfg80211.h cfg80211_send_assoc_timeout
  128. !Finclude/net/cfg80211.h cfg80211_send_deauth
  129. !Finclude/net/cfg80211.h __cfg80211_send_deauth
  130. !Finclude/net/cfg80211.h cfg80211_send_disassoc
  131. !Finclude/net/cfg80211.h __cfg80211_send_disassoc
  132. !Finclude/net/cfg80211.h cfg80211_ibss_joined
  133. !Finclude/net/cfg80211.h cfg80211_connect_result
  134. !Finclude/net/cfg80211.h cfg80211_roamed
  135. !Finclude/net/cfg80211.h cfg80211_disconnected
  136. !Finclude/net/cfg80211.h cfg80211_ready_on_channel
  137. !Finclude/net/cfg80211.h cfg80211_remain_on_channel_expired
  138. !Finclude/net/cfg80211.h cfg80211_new_sta
  139. !Finclude/net/cfg80211.h cfg80211_rx_mgmt
  140. !Finclude/net/cfg80211.h cfg80211_mgmt_tx_status
  141. !Finclude/net/cfg80211.h cfg80211_cqm_rssi_notify
  142. !Finclude/net/cfg80211.h cfg80211_cqm_pktloss_notify
  143. !Finclude/net/cfg80211.h cfg80211_michael_mic_failure
  144. </chapter>
  145. <chapter>
  146. <title>Scanning and BSS list handling</title>
  147. !Pinclude/net/cfg80211.h Scanning and BSS list handling
  148. !Finclude/net/cfg80211.h cfg80211_ssid
  149. !Finclude/net/cfg80211.h cfg80211_scan_request
  150. !Finclude/net/cfg80211.h cfg80211_scan_done
  151. !Finclude/net/cfg80211.h cfg80211_bss
  152. !Finclude/net/cfg80211.h cfg80211_inform_bss_frame
  153. !Finclude/net/cfg80211.h cfg80211_inform_bss
  154. !Finclude/net/cfg80211.h cfg80211_unlink_bss
  155. !Finclude/net/cfg80211.h cfg80211_find_ie
  156. !Finclude/net/cfg80211.h ieee80211_bss_get_ie
  157. </chapter>
  158. <chapter>
  159. <title>Utility functions</title>
  160. !Pinclude/net/cfg80211.h Utility functions
  161. !Finclude/net/cfg80211.h ieee80211_channel_to_frequency
  162. !Finclude/net/cfg80211.h ieee80211_frequency_to_channel
  163. !Finclude/net/cfg80211.h ieee80211_get_channel
  164. !Finclude/net/cfg80211.h ieee80211_get_response_rate
  165. !Finclude/net/cfg80211.h ieee80211_hdrlen
  166. !Finclude/net/cfg80211.h ieee80211_get_hdrlen_from_skb
  167. !Finclude/net/cfg80211.h ieee80211_radiotap_iterator
  168. </chapter>
  169. <chapter>
  170. <title>Data path helpers</title>
  171. !Pinclude/net/cfg80211.h Data path helpers
  172. !Finclude/net/cfg80211.h ieee80211_data_to_8023
  173. !Finclude/net/cfg80211.h ieee80211_data_from_8023
  174. !Finclude/net/cfg80211.h ieee80211_amsdu_to_8023s
  175. !Finclude/net/cfg80211.h cfg80211_classify8021d
  176. </chapter>
  177. <chapter>
  178. <title>Regulatory enforcement infrastructure</title>
  179. !Pinclude/net/cfg80211.h Regulatory enforcement infrastructure
  180. !Finclude/net/cfg80211.h regulatory_hint
  181. !Finclude/net/cfg80211.h wiphy_apply_custom_regulatory
  182. !Finclude/net/cfg80211.h freq_reg_info
  183. </chapter>
  184. <chapter>
  185. <title>RFkill integration</title>
  186. !Pinclude/net/cfg80211.h RFkill integration
  187. !Finclude/net/cfg80211.h wiphy_rfkill_set_hw_state
  188. !Finclude/net/cfg80211.h wiphy_rfkill_start_polling
  189. !Finclude/net/cfg80211.h wiphy_rfkill_stop_polling
  190. </chapter>
  191. <chapter>
  192. <title>Test mode</title>
  193. !Pinclude/net/cfg80211.h Test mode
  194. !Finclude/net/cfg80211.h cfg80211_testmode_alloc_reply_skb
  195. !Finclude/net/cfg80211.h cfg80211_testmode_reply
  196. !Finclude/net/cfg80211.h cfg80211_testmode_alloc_event_skb
  197. !Finclude/net/cfg80211.h cfg80211_testmode_event
  198. </chapter>
  199. </book>
  200. <book id="mac80211-developers-guide">
  201. <bookinfo>
  202. <title>The mac80211 subsystem</title>
  203. <abstract>
  204. !Pinclude/net/mac80211.h Introduction
  205. !Pinclude/net/mac80211.h Warning
  206. </abstract>
  207. </bookinfo>
  208. <toc></toc>
  209. <!--
  210. Generally, this document shall be ordered by increasing complexity.
  211. It is important to note that readers should be able to read only
  212. the first few sections to get a working driver and only advanced
  213. usage should require reading the full document.
  214. -->
  215. <part>
  216. <title>The basic mac80211 driver interface</title>
  217. <partintro>
  218. <para>
  219. You should read and understand the information contained
  220. within this part of the book while implementing a driver.
  221. In some chapters, advanced usage is noted, that may be
  222. skipped at first.
  223. </para>
  224. <para>
  225. This part of the book only covers station and monitor mode
  226. functionality, additional information required to implement
  227. the other modes is covered in the second part of the book.
  228. </para>
  229. </partintro>
  230. <chapter id="basics">
  231. <title>Basic hardware handling</title>
  232. <para>TBD</para>
  233. <para>
  234. This chapter shall contain information on getting a hw
  235. struct allocated and registered with mac80211.
  236. </para>
  237. <para>
  238. Since it is required to allocate rates/modes before registering
  239. a hw struct, this chapter shall also contain information on setting
  240. up the rate/mode structs.
  241. </para>
  242. <para>
  243. Additionally, some discussion about the callbacks and
  244. the general programming model should be in here, including
  245. the definition of ieee80211_ops which will be referred to
  246. a lot.
  247. </para>
  248. <para>
  249. Finally, a discussion of hardware capabilities should be done
  250. with references to other parts of the book.
  251. </para>
  252. <!-- intentionally multiple !F lines to get proper order -->
  253. !Finclude/net/mac80211.h ieee80211_hw
  254. !Finclude/net/mac80211.h ieee80211_hw_flags
  255. !Finclude/net/mac80211.h SET_IEEE80211_DEV
  256. !Finclude/net/mac80211.h SET_IEEE80211_PERM_ADDR
  257. !Finclude/net/mac80211.h ieee80211_ops
  258. !Finclude/net/mac80211.h ieee80211_alloc_hw
  259. !Finclude/net/mac80211.h ieee80211_register_hw
  260. !Finclude/net/mac80211.h ieee80211_unregister_hw
  261. !Finclude/net/mac80211.h ieee80211_free_hw
  262. </chapter>
  263. <chapter id="phy-handling">
  264. <title>PHY configuration</title>
  265. <para>TBD</para>
  266. <para>
  267. This chapter should describe PHY handling including
  268. start/stop callbacks and the various structures used.
  269. </para>
  270. !Finclude/net/mac80211.h ieee80211_conf
  271. !Finclude/net/mac80211.h ieee80211_conf_flags
  272. </chapter>
  273. <chapter id="iface-handling">
  274. <title>Virtual interfaces</title>
  275. <para>TBD</para>
  276. <para>
  277. This chapter should describe virtual interface basics
  278. that are relevant to the driver (VLANs, MGMT etc are not.)
  279. It should explain the use of the add_iface/remove_iface
  280. callbacks as well as the interface configuration callbacks.
  281. </para>
  282. <para>Things related to AP mode should be discussed there.</para>
  283. <para>
  284. Things related to supporting multiple interfaces should be
  285. in the appropriate chapter, a BIG FAT note should be here about
  286. this though and the recommendation to allow only a single
  287. interface in STA mode at first!
  288. </para>
  289. !Finclude/net/mac80211.h ieee80211_vif
  290. </chapter>
  291. <chapter id="rx-tx">
  292. <title>Receive and transmit processing</title>
  293. <sect1>
  294. <title>what should be here</title>
  295. <para>TBD</para>
  296. <para>
  297. This should describe the receive and transmit
  298. paths in mac80211/the drivers as well as
  299. transmit status handling.
  300. </para>
  301. </sect1>
  302. <sect1>
  303. <title>Frame format</title>
  304. !Pinclude/net/mac80211.h Frame format
  305. </sect1>
  306. <sect1>
  307. <title>Packet alignment</title>
  308. !Pnet/mac80211/rx.c Packet alignment
  309. </sect1>
  310. <sect1>
  311. <title>Calling into mac80211 from interrupts</title>
  312. !Pinclude/net/mac80211.h Calling mac80211 from interrupts
  313. </sect1>
  314. <sect1>
  315. <title>functions/definitions</title>
  316. !Finclude/net/mac80211.h ieee80211_rx_status
  317. !Finclude/net/mac80211.h mac80211_rx_flags
  318. !Finclude/net/mac80211.h mac80211_tx_control_flags
  319. !Finclude/net/mac80211.h mac80211_rate_control_flags
  320. !Finclude/net/mac80211.h ieee80211_tx_rate
  321. !Finclude/net/mac80211.h ieee80211_tx_info
  322. !Finclude/net/mac80211.h ieee80211_tx_info_clear_status
  323. !Finclude/net/mac80211.h ieee80211_rx
  324. !Finclude/net/mac80211.h ieee80211_rx_ni
  325. !Finclude/net/mac80211.h ieee80211_rx_irqsafe
  326. !Finclude/net/mac80211.h ieee80211_tx_status
  327. !Finclude/net/mac80211.h ieee80211_tx_status_ni
  328. !Finclude/net/mac80211.h ieee80211_tx_status_irqsafe
  329. !Finclude/net/mac80211.h ieee80211_rts_get
  330. !Finclude/net/mac80211.h ieee80211_rts_duration
  331. !Finclude/net/mac80211.h ieee80211_ctstoself_get
  332. !Finclude/net/mac80211.h ieee80211_ctstoself_duration
  333. !Finclude/net/mac80211.h ieee80211_generic_frame_duration
  334. !Finclude/net/mac80211.h ieee80211_wake_queue
  335. !Finclude/net/mac80211.h ieee80211_stop_queue
  336. !Finclude/net/mac80211.h ieee80211_wake_queues
  337. !Finclude/net/mac80211.h ieee80211_stop_queues
  338. !Finclude/net/mac80211.h ieee80211_queue_stopped
  339. </sect1>
  340. </chapter>
  341. <chapter id="filters">
  342. <title>Frame filtering</title>
  343. !Pinclude/net/mac80211.h Frame filtering
  344. !Finclude/net/mac80211.h ieee80211_filter_flags
  345. </chapter>
  346. <chapter id="workqueue">
  347. <title>The mac80211 workqueue</title>
  348. !Pinclude/net/mac80211.h mac80211 workqueue
  349. !Finclude/net/mac80211.h ieee80211_queue_work
  350. !Finclude/net/mac80211.h ieee80211_queue_delayed_work
  351. </chapter>
  352. </part>
  353. <part id="advanced">
  354. <title>Advanced driver interface</title>
  355. <partintro>
  356. <para>
  357. Information contained within this part of the book is
  358. of interest only for advanced interaction of mac80211
  359. with drivers to exploit more hardware capabilities and
  360. improve performance.
  361. </para>
  362. </partintro>
  363. <chapter id="led-support">
  364. <title>LED support</title>
  365. <para>
  366. Mac80211 supports various ways of blinking LEDs. Wherever possible,
  367. device LEDs should be exposed as LED class devices and hooked up to
  368. the appropriate trigger, which will then be triggered appropriately
  369. by mac80211.
  370. </para>
  371. !Finclude/net/mac80211.h ieee80211_get_tx_led_name
  372. !Finclude/net/mac80211.h ieee80211_get_rx_led_name
  373. !Finclude/net/mac80211.h ieee80211_get_assoc_led_name
  374. !Finclude/net/mac80211.h ieee80211_get_radio_led_name
  375. !Finclude/net/mac80211.h ieee80211_tpt_blink
  376. !Finclude/net/mac80211.h ieee80211_tpt_led_trigger_flags
  377. !Finclude/net/mac80211.h ieee80211_create_tpt_led_trigger
  378. </chapter>
  379. <chapter id="hardware-crypto-offload">
  380. <title>Hardware crypto acceleration</title>
  381. !Pinclude/net/mac80211.h Hardware crypto acceleration
  382. <!-- intentionally multiple !F lines to get proper order -->
  383. !Finclude/net/mac80211.h set_key_cmd
  384. !Finclude/net/mac80211.h ieee80211_key_conf
  385. !Finclude/net/mac80211.h ieee80211_key_flags
  386. !Finclude/net/mac80211.h ieee80211_get_tkip_p1k
  387. !Finclude/net/mac80211.h ieee80211_get_tkip_p1k_iv
  388. !Finclude/net/mac80211.h ieee80211_get_tkip_p2k
  389. !Finclude/net/mac80211.h ieee80211_key_removed
  390. </chapter>
  391. <chapter id="powersave">
  392. <title>Powersave support</title>
  393. !Pinclude/net/mac80211.h Powersave support
  394. </chapter>
  395. <chapter id="beacon-filter">
  396. <title>Beacon filter support</title>
  397. !Pinclude/net/mac80211.h Beacon filter support
  398. !Finclude/net/mac80211.h ieee80211_beacon_loss
  399. </chapter>
  400. <chapter id="qos">
  401. <title>Multiple queues and QoS support</title>
  402. <para>TBD</para>
  403. !Finclude/net/mac80211.h ieee80211_tx_queue_params
  404. </chapter>
  405. <chapter id="AP">
  406. <title>Access point mode support</title>
  407. <para>TBD</para>
  408. <para>Some parts of the if_conf should be discussed here instead</para>
  409. <para>
  410. Insert notes about VLAN interfaces with hw crypto here or
  411. in the hw crypto chapter.
  412. </para>
  413. <section id="ps-client">
  414. <title>support for powersaving clients</title>
  415. !Pinclude/net/mac80211.h AP support for powersaving clients
  416. </section>
  417. !Finclude/net/mac80211.h ieee80211_get_buffered_bc
  418. !Finclude/net/mac80211.h ieee80211_beacon_get
  419. !Finclude/net/mac80211.h ieee80211_sta_eosp_irqsafe
  420. !Finclude/net/mac80211.h ieee80211_frame_release_type
  421. !Finclude/net/mac80211.h ieee80211_sta_ps_transition
  422. !Finclude/net/mac80211.h ieee80211_sta_ps_transition_ni
  423. !Finclude/net/mac80211.h ieee80211_sta_set_buffered
  424. !Finclude/net/mac80211.h ieee80211_sta_block_awake
  425. </chapter>
  426. <chapter id="multi-iface">
  427. <title>Supporting multiple virtual interfaces</title>
  428. <para>TBD</para>
  429. <para>
  430. Note: WDS with identical MAC address should almost always be OK
  431. </para>
  432. <para>
  433. Insert notes about having multiple virtual interfaces with
  434. different MAC addresses here, note which configurations are
  435. supported by mac80211, add notes about supporting hw crypto
  436. with it.
  437. </para>
  438. !Finclude/net/mac80211.h ieee80211_iterate_active_interfaces
  439. !Finclude/net/mac80211.h ieee80211_iterate_active_interfaces_atomic
  440. </chapter>
  441. <chapter id="station-handling">
  442. <title>Station handling</title>
  443. <para>TODO</para>
  444. !Finclude/net/mac80211.h ieee80211_sta
  445. !Finclude/net/mac80211.h sta_notify_cmd
  446. !Finclude/net/mac80211.h ieee80211_find_sta
  447. !Finclude/net/mac80211.h ieee80211_find_sta_by_ifaddr
  448. </chapter>
  449. <chapter id="hardware-scan-offload">
  450. <title>Hardware scan offload</title>
  451. <para>TBD</para>
  452. !Finclude/net/mac80211.h ieee80211_scan_completed
  453. </chapter>
  454. <chapter id="aggregation">
  455. <title>Aggregation</title>
  456. <sect1>
  457. <title>TX A-MPDU aggregation</title>
  458. !Pnet/mac80211/agg-tx.c TX A-MPDU aggregation
  459. !Cnet/mac80211/agg-tx.c
  460. </sect1>
  461. <sect1>
  462. <title>RX A-MPDU aggregation</title>
  463. !Pnet/mac80211/agg-rx.c RX A-MPDU aggregation
  464. !Cnet/mac80211/agg-rx.c
  465. </sect1>
  466. !Finclude/net/mac80211.h ieee80211_ampdu_mlme_action
  467. </chapter>
  468. <chapter id="smps">
  469. <title>Spatial Multiplexing Powersave (SMPS)</title>
  470. !Pinclude/net/mac80211.h Spatial multiplexing power save
  471. !Finclude/net/mac80211.h ieee80211_request_smps
  472. !Finclude/net/mac80211.h ieee80211_smps_mode
  473. </chapter>
  474. </part>
  475. <part id="rate-control">
  476. <title>Rate control interface</title>
  477. <partintro>
  478. <para>TBD</para>
  479. <para>
  480. This part of the book describes the rate control algorithm
  481. interface and how it relates to mac80211 and drivers.
  482. </para>
  483. </partintro>
  484. <chapter id="ratecontrol-api">
  485. <title>Rate Control API</title>
  486. <para>TBD</para>
  487. !Finclude/net/mac80211.h ieee80211_start_tx_ba_session
  488. !Finclude/net/mac80211.h ieee80211_start_tx_ba_cb_irqsafe
  489. !Finclude/net/mac80211.h ieee80211_stop_tx_ba_session
  490. !Finclude/net/mac80211.h ieee80211_stop_tx_ba_cb_irqsafe
  491. !Finclude/net/mac80211.h rate_control_changed
  492. !Finclude/net/mac80211.h ieee80211_tx_rate_control
  493. !Finclude/net/mac80211.h rate_control_send_low
  494. </chapter>
  495. </part>
  496. <part id="internal">
  497. <title>Internals</title>
  498. <partintro>
  499. <para>TBD</para>
  500. <para>
  501. This part of the book describes mac80211 internals.
  502. </para>
  503. </partintro>
  504. <chapter id="key-handling">
  505. <title>Key handling</title>
  506. <sect1>
  507. <title>Key handling basics</title>
  508. !Pnet/mac80211/key.c Key handling basics
  509. </sect1>
  510. <sect1>
  511. <title>MORE TBD</title>
  512. <para>TBD</para>
  513. </sect1>
  514. </chapter>
  515. <chapter id="rx-processing">
  516. <title>Receive processing</title>
  517. <para>TBD</para>
  518. </chapter>
  519. <chapter id="tx-processing">
  520. <title>Transmit processing</title>
  521. <para>TBD</para>
  522. </chapter>
  523. <chapter id="sta-info">
  524. <title>Station info handling</title>
  525. <sect1>
  526. <title>Programming information</title>
  527. !Fnet/mac80211/sta_info.h sta_info
  528. !Fnet/mac80211/sta_info.h ieee80211_sta_info_flags
  529. </sect1>
  530. <sect1>
  531. <title>STA information lifetime rules</title>
  532. !Pnet/mac80211/sta_info.c STA information lifetime rules
  533. </sect1>
  534. </chapter>
  535. <chapter id="aggregation-internals">
  536. <title>Aggregation</title>
  537. !Fnet/mac80211/sta_info.h sta_ampdu_mlme
  538. !Fnet/mac80211/sta_info.h tid_ampdu_tx
  539. !Fnet/mac80211/sta_info.h tid_ampdu_rx
  540. </chapter>
  541. <chapter id="synchronisation">
  542. <title>Synchronisation</title>
  543. <para>TBD</para>
  544. <para>Locking, lots of RCU</para>
  545. </chapter>
  546. </part>
  547. </book>
  548. </set>