80211.tmpl 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575
  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_auth_canceled
  127. !Finclude/net/cfg80211.h cfg80211_send_rx_assoc
  128. !Finclude/net/cfg80211.h cfg80211_send_assoc_timeout
  129. !Finclude/net/cfg80211.h cfg80211_send_deauth
  130. !Finclude/net/cfg80211.h __cfg80211_send_deauth
  131. !Finclude/net/cfg80211.h cfg80211_send_disassoc
  132. !Finclude/net/cfg80211.h __cfg80211_send_disassoc
  133. !Finclude/net/cfg80211.h cfg80211_ibss_joined
  134. !Finclude/net/cfg80211.h cfg80211_connect_result
  135. !Finclude/net/cfg80211.h cfg80211_roamed
  136. !Finclude/net/cfg80211.h cfg80211_disconnected
  137. !Finclude/net/cfg80211.h cfg80211_ready_on_channel
  138. !Finclude/net/cfg80211.h cfg80211_remain_on_channel_expired
  139. !Finclude/net/cfg80211.h cfg80211_new_sta
  140. !Finclude/net/cfg80211.h cfg80211_rx_mgmt
  141. !Finclude/net/cfg80211.h cfg80211_mgmt_tx_status
  142. !Finclude/net/cfg80211.h cfg80211_cqm_rssi_notify
  143. !Finclude/net/cfg80211.h cfg80211_cqm_pktloss_notify
  144. !Finclude/net/cfg80211.h cfg80211_michael_mic_failure
  145. </chapter>
  146. <chapter>
  147. <title>Scanning and BSS list handling</title>
  148. !Pinclude/net/cfg80211.h Scanning and BSS list handling
  149. !Finclude/net/cfg80211.h cfg80211_ssid
  150. !Finclude/net/cfg80211.h cfg80211_scan_request
  151. !Finclude/net/cfg80211.h cfg80211_scan_done
  152. !Finclude/net/cfg80211.h cfg80211_bss
  153. !Finclude/net/cfg80211.h cfg80211_inform_bss_frame
  154. !Finclude/net/cfg80211.h cfg80211_inform_bss
  155. !Finclude/net/cfg80211.h cfg80211_unlink_bss
  156. !Finclude/net/cfg80211.h cfg80211_find_ie
  157. !Finclude/net/cfg80211.h ieee80211_bss_get_ie
  158. </chapter>
  159. <chapter>
  160. <title>Utility functions</title>
  161. !Pinclude/net/cfg80211.h Utility functions
  162. !Finclude/net/cfg80211.h ieee80211_channel_to_frequency
  163. !Finclude/net/cfg80211.h ieee80211_frequency_to_channel
  164. !Finclude/net/cfg80211.h ieee80211_get_channel
  165. !Finclude/net/cfg80211.h ieee80211_get_response_rate
  166. !Finclude/net/cfg80211.h ieee80211_hdrlen
  167. !Finclude/net/cfg80211.h ieee80211_get_hdrlen_from_skb
  168. !Finclude/net/cfg80211.h ieee80211_radiotap_iterator
  169. </chapter>
  170. <chapter>
  171. <title>Data path helpers</title>
  172. !Pinclude/net/cfg80211.h Data path helpers
  173. !Finclude/net/cfg80211.h ieee80211_data_to_8023
  174. !Finclude/net/cfg80211.h ieee80211_data_from_8023
  175. !Finclude/net/cfg80211.h ieee80211_amsdu_to_8023s
  176. !Finclude/net/cfg80211.h cfg80211_classify8021d
  177. </chapter>
  178. <chapter>
  179. <title>Regulatory enforcement infrastructure</title>
  180. !Pinclude/net/cfg80211.h Regulatory enforcement infrastructure
  181. !Finclude/net/cfg80211.h regulatory_hint
  182. !Finclude/net/cfg80211.h wiphy_apply_custom_regulatory
  183. !Finclude/net/cfg80211.h freq_reg_info
  184. </chapter>
  185. <chapter>
  186. <title>RFkill integration</title>
  187. !Pinclude/net/cfg80211.h RFkill integration
  188. !Finclude/net/cfg80211.h wiphy_rfkill_set_hw_state
  189. !Finclude/net/cfg80211.h wiphy_rfkill_start_polling
  190. !Finclude/net/cfg80211.h wiphy_rfkill_stop_polling
  191. </chapter>
  192. <chapter>
  193. <title>Test mode</title>
  194. !Pinclude/net/cfg80211.h Test mode
  195. !Finclude/net/cfg80211.h cfg80211_testmode_alloc_reply_skb
  196. !Finclude/net/cfg80211.h cfg80211_testmode_reply
  197. !Finclude/net/cfg80211.h cfg80211_testmode_alloc_event_skb
  198. !Finclude/net/cfg80211.h cfg80211_testmode_event
  199. </chapter>
  200. </book>
  201. <book id="mac80211-developers-guide">
  202. <bookinfo>
  203. <title>The mac80211 subsystem</title>
  204. <abstract>
  205. !Pinclude/net/mac80211.h Introduction
  206. !Pinclude/net/mac80211.h Warning
  207. </abstract>
  208. </bookinfo>
  209. <toc></toc>
  210. <!--
  211. Generally, this document shall be ordered by increasing complexity.
  212. It is important to note that readers should be able to read only
  213. the first few sections to get a working driver and only advanced
  214. usage should require reading the full document.
  215. -->
  216. <part>
  217. <title>The basic mac80211 driver interface</title>
  218. <partintro>
  219. <para>
  220. You should read and understand the information contained
  221. within this part of the book while implementing a driver.
  222. In some chapters, advanced usage is noted, that may be
  223. skipped at first.
  224. </para>
  225. <para>
  226. This part of the book only covers station and monitor mode
  227. functionality, additional information required to implement
  228. the other modes is covered in the second part of the book.
  229. </para>
  230. </partintro>
  231. <chapter id="basics">
  232. <title>Basic hardware handling</title>
  233. <para>TBD</para>
  234. <para>
  235. This chapter shall contain information on getting a hw
  236. struct allocated and registered with mac80211.
  237. </para>
  238. <para>
  239. Since it is required to allocate rates/modes before registering
  240. a hw struct, this chapter shall also contain information on setting
  241. up the rate/mode structs.
  242. </para>
  243. <para>
  244. Additionally, some discussion about the callbacks and
  245. the general programming model should be in here, including
  246. the definition of ieee80211_ops which will be referred to
  247. a lot.
  248. </para>
  249. <para>
  250. Finally, a discussion of hardware capabilities should be done
  251. with references to other parts of the book.
  252. </para>
  253. <!-- intentionally multiple !F lines to get proper order -->
  254. !Finclude/net/mac80211.h ieee80211_hw
  255. !Finclude/net/mac80211.h ieee80211_hw_flags
  256. !Finclude/net/mac80211.h SET_IEEE80211_DEV
  257. !Finclude/net/mac80211.h SET_IEEE80211_PERM_ADDR
  258. !Finclude/net/mac80211.h ieee80211_ops
  259. !Finclude/net/mac80211.h ieee80211_alloc_hw
  260. !Finclude/net/mac80211.h ieee80211_register_hw
  261. !Finclude/net/mac80211.h ieee80211_unregister_hw
  262. !Finclude/net/mac80211.h ieee80211_free_hw
  263. </chapter>
  264. <chapter id="phy-handling">
  265. <title>PHY configuration</title>
  266. <para>TBD</para>
  267. <para>
  268. This chapter should describe PHY handling including
  269. start/stop callbacks and the various structures used.
  270. </para>
  271. !Finclude/net/mac80211.h ieee80211_conf
  272. !Finclude/net/mac80211.h ieee80211_conf_flags
  273. </chapter>
  274. <chapter id="iface-handling">
  275. <title>Virtual interfaces</title>
  276. <para>TBD</para>
  277. <para>
  278. This chapter should describe virtual interface basics
  279. that are relevant to the driver (VLANs, MGMT etc are not.)
  280. It should explain the use of the add_iface/remove_iface
  281. callbacks as well as the interface configuration callbacks.
  282. </para>
  283. <para>Things related to AP mode should be discussed there.</para>
  284. <para>
  285. Things related to supporting multiple interfaces should be
  286. in the appropriate chapter, a BIG FAT note should be here about
  287. this though and the recommendation to allow only a single
  288. interface in STA mode at first!
  289. </para>
  290. !Finclude/net/mac80211.h ieee80211_vif
  291. </chapter>
  292. <chapter id="rx-tx">
  293. <title>Receive and transmit processing</title>
  294. <sect1>
  295. <title>what should be here</title>
  296. <para>TBD</para>
  297. <para>
  298. This should describe the receive and transmit
  299. paths in mac80211/the drivers as well as
  300. transmit status handling.
  301. </para>
  302. </sect1>
  303. <sect1>
  304. <title>Frame format</title>
  305. !Pinclude/net/mac80211.h Frame format
  306. </sect1>
  307. <sect1>
  308. <title>Packet alignment</title>
  309. !Pnet/mac80211/rx.c Packet alignment
  310. </sect1>
  311. <sect1>
  312. <title>Calling into mac80211 from interrupts</title>
  313. !Pinclude/net/mac80211.h Calling mac80211 from interrupts
  314. </sect1>
  315. <sect1>
  316. <title>functions/definitions</title>
  317. !Finclude/net/mac80211.h ieee80211_rx_status
  318. !Finclude/net/mac80211.h mac80211_rx_flags
  319. !Finclude/net/mac80211.h mac80211_tx_control_flags
  320. !Finclude/net/mac80211.h mac80211_rate_control_flags
  321. !Finclude/net/mac80211.h ieee80211_tx_rate
  322. !Finclude/net/mac80211.h ieee80211_tx_info
  323. !Finclude/net/mac80211.h ieee80211_tx_info_clear_status
  324. !Finclude/net/mac80211.h ieee80211_rx
  325. !Finclude/net/mac80211.h ieee80211_rx_ni
  326. !Finclude/net/mac80211.h ieee80211_rx_irqsafe
  327. !Finclude/net/mac80211.h ieee80211_tx_status
  328. !Finclude/net/mac80211.h ieee80211_tx_status_ni
  329. !Finclude/net/mac80211.h ieee80211_tx_status_irqsafe
  330. !Finclude/net/mac80211.h ieee80211_rts_get
  331. !Finclude/net/mac80211.h ieee80211_rts_duration
  332. !Finclude/net/mac80211.h ieee80211_ctstoself_get
  333. !Finclude/net/mac80211.h ieee80211_ctstoself_duration
  334. !Finclude/net/mac80211.h ieee80211_generic_frame_duration
  335. !Finclude/net/mac80211.h ieee80211_wake_queue
  336. !Finclude/net/mac80211.h ieee80211_stop_queue
  337. !Finclude/net/mac80211.h ieee80211_wake_queues
  338. !Finclude/net/mac80211.h ieee80211_stop_queues
  339. !Finclude/net/mac80211.h ieee80211_queue_stopped
  340. </sect1>
  341. </chapter>
  342. <chapter id="filters">
  343. <title>Frame filtering</title>
  344. !Pinclude/net/mac80211.h Frame filtering
  345. !Finclude/net/mac80211.h ieee80211_filter_flags
  346. </chapter>
  347. <chapter id="workqueue">
  348. <title>The mac80211 workqueue</title>
  349. !Pinclude/net/mac80211.h mac80211 workqueue
  350. !Finclude/net/mac80211.h ieee80211_queue_work
  351. !Finclude/net/mac80211.h ieee80211_queue_delayed_work
  352. </chapter>
  353. </part>
  354. <part id="advanced">
  355. <title>Advanced driver interface</title>
  356. <partintro>
  357. <para>
  358. Information contained within this part of the book is
  359. of interest only for advanced interaction of mac80211
  360. with drivers to exploit more hardware capabilities and
  361. improve performance.
  362. </para>
  363. </partintro>
  364. <chapter id="led-support">
  365. <title>LED support</title>
  366. <para>
  367. Mac80211 supports various ways of blinking LEDs. Wherever possible,
  368. device LEDs should be exposed as LED class devices and hooked up to
  369. the appropriate trigger, which will then be triggered appropriately
  370. by mac80211.
  371. </para>
  372. !Finclude/net/mac80211.h ieee80211_get_tx_led_name
  373. !Finclude/net/mac80211.h ieee80211_get_rx_led_name
  374. !Finclude/net/mac80211.h ieee80211_get_assoc_led_name
  375. !Finclude/net/mac80211.h ieee80211_get_radio_led_name
  376. !Finclude/net/mac80211.h ieee80211_tpt_blink
  377. !Finclude/net/mac80211.h ieee80211_tpt_led_trigger_flags
  378. !Finclude/net/mac80211.h ieee80211_create_tpt_led_trigger
  379. </chapter>
  380. <chapter id="hardware-crypto-offload">
  381. <title>Hardware crypto acceleration</title>
  382. !Pinclude/net/mac80211.h Hardware crypto acceleration
  383. <!-- intentionally multiple !F lines to get proper order -->
  384. !Finclude/net/mac80211.h set_key_cmd
  385. !Finclude/net/mac80211.h ieee80211_key_conf
  386. !Finclude/net/mac80211.h ieee80211_key_flags
  387. !Finclude/net/mac80211.h ieee80211_tkip_key_type
  388. !Finclude/net/mac80211.h ieee80211_get_tkip_key
  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. !Finclude/net/mac80211.h ieee80211_get_buffered_bc
  414. !Finclude/net/mac80211.h ieee80211_beacon_get
  415. </chapter>
  416. <chapter id="multi-iface">
  417. <title>Supporting multiple virtual interfaces</title>
  418. <para>TBD</para>
  419. <para>
  420. Note: WDS with identical MAC address should almost always be OK
  421. </para>
  422. <para>
  423. Insert notes about having multiple virtual interfaces with
  424. different MAC addresses here, note which configurations are
  425. supported by mac80211, add notes about supporting hw crypto
  426. with it.
  427. </para>
  428. !Finclude/net/mac80211.h ieee80211_iterate_active_interfaces
  429. !Finclude/net/mac80211.h ieee80211_iterate_active_interfaces_atomic
  430. </chapter>
  431. <chapter id="station-handling">
  432. <title>Station handling</title>
  433. <para>TODO</para>
  434. !Finclude/net/mac80211.h ieee80211_sta
  435. !Finclude/net/mac80211.h sta_notify_cmd
  436. !Finclude/net/mac80211.h ieee80211_find_sta
  437. !Finclude/net/mac80211.h ieee80211_find_sta_by_ifaddr
  438. !Finclude/net/mac80211.h ieee80211_sta_block_awake
  439. </chapter>
  440. <chapter id="hardware-scan-offload">
  441. <title>Hardware scan offload</title>
  442. <para>TBD</para>
  443. !Finclude/net/mac80211.h ieee80211_scan_completed
  444. </chapter>
  445. <chapter id="aggregation">
  446. <title>Aggregation</title>
  447. <sect1>
  448. <title>TX A-MPDU aggregation</title>
  449. !Pnet/mac80211/agg-tx.c TX A-MPDU aggregation
  450. !Cnet/mac80211/agg-tx.c
  451. </sect1>
  452. <sect1>
  453. <title>RX A-MPDU aggregation</title>
  454. !Pnet/mac80211/agg-rx.c RX A-MPDU aggregation
  455. !Cnet/mac80211/agg-rx.c
  456. </sect1>
  457. !Finclude/net/mac80211.h ieee80211_ampdu_mlme_action
  458. </chapter>
  459. <chapter id="smps">
  460. <title>Spatial Multiplexing Powersave (SMPS)</title>
  461. !Pinclude/net/mac80211.h Spatial multiplexing power save
  462. !Finclude/net/mac80211.h ieee80211_request_smps
  463. !Finclude/net/mac80211.h ieee80211_smps_mode
  464. </chapter>
  465. </part>
  466. <part id="rate-control">
  467. <title>Rate control interface</title>
  468. <partintro>
  469. <para>TBD</para>
  470. <para>
  471. This part of the book describes the rate control algorithm
  472. interface and how it relates to mac80211 and drivers.
  473. </para>
  474. </partintro>
  475. <chapter id="ratecontrol-api">
  476. <title>Rate Control API</title>
  477. <para>TBD</para>
  478. !Finclude/net/mac80211.h ieee80211_start_tx_ba_session
  479. !Finclude/net/mac80211.h ieee80211_start_tx_ba_cb_irqsafe
  480. !Finclude/net/mac80211.h ieee80211_stop_tx_ba_session
  481. !Finclude/net/mac80211.h ieee80211_stop_tx_ba_cb_irqsafe
  482. !Finclude/net/mac80211.h rate_control_changed
  483. !Finclude/net/mac80211.h ieee80211_tx_rate_control
  484. !Finclude/net/mac80211.h rate_control_send_low
  485. </chapter>
  486. </part>
  487. <part id="internal">
  488. <title>Internals</title>
  489. <partintro>
  490. <para>TBD</para>
  491. <para>
  492. This part of the book describes mac80211 internals.
  493. </para>
  494. </partintro>
  495. <chapter id="key-handling">
  496. <title>Key handling</title>
  497. <sect1>
  498. <title>Key handling basics</title>
  499. !Pnet/mac80211/key.c Key handling basics
  500. </sect1>
  501. <sect1>
  502. <title>MORE TBD</title>
  503. <para>TBD</para>
  504. </sect1>
  505. </chapter>
  506. <chapter id="rx-processing">
  507. <title>Receive processing</title>
  508. <para>TBD</para>
  509. </chapter>
  510. <chapter id="tx-processing">
  511. <title>Transmit processing</title>
  512. <para>TBD</para>
  513. </chapter>
  514. <chapter id="sta-info">
  515. <title>Station info handling</title>
  516. <sect1>
  517. <title>Programming information</title>
  518. !Fnet/mac80211/sta_info.h sta_info
  519. !Fnet/mac80211/sta_info.h ieee80211_sta_info_flags
  520. </sect1>
  521. <sect1>
  522. <title>STA information lifetime rules</title>
  523. !Pnet/mac80211/sta_info.c STA information lifetime rules
  524. </sect1>
  525. </chapter>
  526. <chapter id="aggregation-internals">
  527. <title>Aggregation</title>
  528. !Fnet/mac80211/sta_info.h sta_ampdu_mlme
  529. !Fnet/mac80211/sta_info.h tid_ampdu_tx
  530. !Fnet/mac80211/sta_info.h tid_ampdu_rx
  531. </chapter>
  532. <chapter id="synchronisation">
  533. <title>Synchronisation</title>
  534. <para>TBD</para>
  535. <para>Locking, lots of RCU</para>
  536. </chapter>
  537. </part>
  538. </book>
  539. </set>