mac80211.h 210 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408
  1. /*
  2. * mac80211 <-> driver interface
  3. *
  4. * Copyright 2002-2005, Devicescape Software, Inc.
  5. * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
  6. * Copyright 2007-2010 Johannes Berg <johannes@sipsolutions.net>
  7. * Copyright 2013-2014 Intel Mobile Communications GmbH
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License version 2 as
  11. * published by the Free Software Foundation.
  12. */
  13. #ifndef MAC80211_H
  14. #define MAC80211_H
  15. #include <linux/bug.h>
  16. #include <linux/kernel.h>
  17. #include <linux/if_ether.h>
  18. #include <linux/skbuff.h>
  19. #include <linux/ieee80211.h>
  20. #include <net/cfg80211.h>
  21. #include <asm/unaligned.h>
  22. /**
  23. * DOC: Introduction
  24. *
  25. * mac80211 is the Linux stack for 802.11 hardware that implements
  26. * only partial functionality in hard- or firmware. This document
  27. * defines the interface between mac80211 and low-level hardware
  28. * drivers.
  29. */
  30. /**
  31. * DOC: Calling mac80211 from interrupts
  32. *
  33. * Only ieee80211_tx_status_irqsafe() and ieee80211_rx_irqsafe() can be
  34. * called in hardware interrupt context. The low-level driver must not call any
  35. * other functions in hardware interrupt context. If there is a need for such
  36. * call, the low-level driver should first ACK the interrupt and perform the
  37. * IEEE 802.11 code call after this, e.g. from a scheduled workqueue or even
  38. * tasklet function.
  39. *
  40. * NOTE: If the driver opts to use the _irqsafe() functions, it may not also
  41. * use the non-IRQ-safe functions!
  42. */
  43. /**
  44. * DOC: Warning
  45. *
  46. * If you're reading this document and not the header file itself, it will
  47. * be incomplete because not all documentation has been converted yet.
  48. */
  49. /**
  50. * DOC: Frame format
  51. *
  52. * As a general rule, when frames are passed between mac80211 and the driver,
  53. * they start with the IEEE 802.11 header and include the same octets that are
  54. * sent over the air except for the FCS which should be calculated by the
  55. * hardware.
  56. *
  57. * There are, however, various exceptions to this rule for advanced features:
  58. *
  59. * The first exception is for hardware encryption and decryption offload
  60. * where the IV/ICV may or may not be generated in hardware.
  61. *
  62. * Secondly, when the hardware handles fragmentation, the frame handed to
  63. * the driver from mac80211 is the MSDU, not the MPDU.
  64. */
  65. /**
  66. * DOC: mac80211 workqueue
  67. *
  68. * mac80211 provides its own workqueue for drivers and internal mac80211 use.
  69. * The workqueue is a single threaded workqueue and can only be accessed by
  70. * helpers for sanity checking. Drivers must ensure all work added onto the
  71. * mac80211 workqueue should be cancelled on the driver stop() callback.
  72. *
  73. * mac80211 will flushed the workqueue upon interface removal and during
  74. * suspend.
  75. *
  76. * All work performed on the mac80211 workqueue must not acquire the RTNL lock.
  77. *
  78. */
  79. /**
  80. * DOC: mac80211 software tx queueing
  81. *
  82. * mac80211 provides an optional intermediate queueing implementation designed
  83. * to allow the driver to keep hardware queues short and provide some fairness
  84. * between different stations/interfaces.
  85. * In this model, the driver pulls data frames from the mac80211 queue instead
  86. * of letting mac80211 push them via drv_tx().
  87. * Other frames (e.g. control or management) are still pushed using drv_tx().
  88. *
  89. * Drivers indicate that they use this model by implementing the .wake_tx_queue
  90. * driver operation.
  91. *
  92. * Intermediate queues (struct ieee80211_txq) are kept per-sta per-tid, with a
  93. * single per-vif queue for multicast data frames.
  94. *
  95. * The driver is expected to initialize its private per-queue data for stations
  96. * and interfaces in the .add_interface and .sta_add ops.
  97. *
  98. * The driver can't access the queue directly. To dequeue a frame, it calls
  99. * ieee80211_tx_dequeue(). Whenever mac80211 adds a new frame to a queue, it
  100. * calls the .wake_tx_queue driver op.
  101. *
  102. * For AP powersave TIM handling, the driver only needs to indicate if it has
  103. * buffered packets in the driver specific data structures by calling
  104. * ieee80211_sta_set_buffered(). For frames buffered in the ieee80211_txq
  105. * struct, mac80211 sets the appropriate TIM PVB bits and calls
  106. * .release_buffered_frames().
  107. * In that callback the driver is therefore expected to release its own
  108. * buffered frames and afterwards also frames from the ieee80211_txq (obtained
  109. * via the usual ieee80211_tx_dequeue).
  110. */
  111. struct device;
  112. /**
  113. * enum ieee80211_max_queues - maximum number of queues
  114. *
  115. * @IEEE80211_MAX_QUEUES: Maximum number of regular device queues.
  116. * @IEEE80211_MAX_QUEUE_MAP: bitmap with maximum queues set
  117. */
  118. enum ieee80211_max_queues {
  119. IEEE80211_MAX_QUEUES = 16,
  120. IEEE80211_MAX_QUEUE_MAP = BIT(IEEE80211_MAX_QUEUES) - 1,
  121. };
  122. #define IEEE80211_INVAL_HW_QUEUE 0xff
  123. /**
  124. * enum ieee80211_ac_numbers - AC numbers as used in mac80211
  125. * @IEEE80211_AC_VO: voice
  126. * @IEEE80211_AC_VI: video
  127. * @IEEE80211_AC_BE: best effort
  128. * @IEEE80211_AC_BK: background
  129. */
  130. enum ieee80211_ac_numbers {
  131. IEEE80211_AC_VO = 0,
  132. IEEE80211_AC_VI = 1,
  133. IEEE80211_AC_BE = 2,
  134. IEEE80211_AC_BK = 3,
  135. };
  136. #define IEEE80211_NUM_ACS 4
  137. /**
  138. * struct ieee80211_tx_queue_params - transmit queue configuration
  139. *
  140. * The information provided in this structure is required for QoS
  141. * transmit queue configuration. Cf. IEEE 802.11 7.3.2.29.
  142. *
  143. * @aifs: arbitration interframe space [0..255]
  144. * @cw_min: minimum contention window [a value of the form
  145. * 2^n-1 in the range 1..32767]
  146. * @cw_max: maximum contention window [like @cw_min]
  147. * @txop: maximum burst time in units of 32 usecs, 0 meaning disabled
  148. * @acm: is mandatory admission control required for the access category
  149. * @uapsd: is U-APSD mode enabled for the queue
  150. */
  151. struct ieee80211_tx_queue_params {
  152. u16 txop;
  153. u16 cw_min;
  154. u16 cw_max;
  155. u8 aifs;
  156. bool acm;
  157. bool uapsd;
  158. };
  159. struct ieee80211_low_level_stats {
  160. unsigned int dot11ACKFailureCount;
  161. unsigned int dot11RTSFailureCount;
  162. unsigned int dot11FCSErrorCount;
  163. unsigned int dot11RTSSuccessCount;
  164. };
  165. /**
  166. * enum ieee80211_chanctx_change - change flag for channel context
  167. * @IEEE80211_CHANCTX_CHANGE_WIDTH: The channel width changed
  168. * @IEEE80211_CHANCTX_CHANGE_RX_CHAINS: The number of RX chains changed
  169. * @IEEE80211_CHANCTX_CHANGE_RADAR: radar detection flag changed
  170. * @IEEE80211_CHANCTX_CHANGE_CHANNEL: switched to another operating channel,
  171. * this is used only with channel switching with CSA
  172. * @IEEE80211_CHANCTX_CHANGE_MIN_WIDTH: The min required channel width changed
  173. */
  174. enum ieee80211_chanctx_change {
  175. IEEE80211_CHANCTX_CHANGE_WIDTH = BIT(0),
  176. IEEE80211_CHANCTX_CHANGE_RX_CHAINS = BIT(1),
  177. IEEE80211_CHANCTX_CHANGE_RADAR = BIT(2),
  178. IEEE80211_CHANCTX_CHANGE_CHANNEL = BIT(3),
  179. IEEE80211_CHANCTX_CHANGE_MIN_WIDTH = BIT(4),
  180. };
  181. /**
  182. * struct ieee80211_chanctx_conf - channel context that vifs may be tuned to
  183. *
  184. * This is the driver-visible part. The ieee80211_chanctx
  185. * that contains it is visible in mac80211 only.
  186. *
  187. * @def: the channel definition
  188. * @min_def: the minimum channel definition currently required.
  189. * @rx_chains_static: The number of RX chains that must always be
  190. * active on the channel to receive MIMO transmissions
  191. * @rx_chains_dynamic: The number of RX chains that must be enabled
  192. * after RTS/CTS handshake to receive SMPS MIMO transmissions;
  193. * this will always be >= @rx_chains_static.
  194. * @radar_enabled: whether radar detection is enabled on this channel.
  195. * @drv_priv: data area for driver use, will always be aligned to
  196. * sizeof(void *), size is determined in hw information.
  197. */
  198. struct ieee80211_chanctx_conf {
  199. struct cfg80211_chan_def def;
  200. struct cfg80211_chan_def min_def;
  201. u8 rx_chains_static, rx_chains_dynamic;
  202. bool radar_enabled;
  203. u8 drv_priv[0] __aligned(sizeof(void *));
  204. };
  205. /**
  206. * enum ieee80211_chanctx_switch_mode - channel context switch mode
  207. * @CHANCTX_SWMODE_REASSIGN_VIF: Both old and new contexts already
  208. * exist (and will continue to exist), but the virtual interface
  209. * needs to be switched from one to the other.
  210. * @CHANCTX_SWMODE_SWAP_CONTEXTS: The old context exists but will stop
  211. * to exist with this call, the new context doesn't exist but
  212. * will be active after this call, the virtual interface switches
  213. * from the old to the new (note that the driver may of course
  214. * implement this as an on-the-fly chandef switch of the existing
  215. * hardware context, but the mac80211 pointer for the old context
  216. * will cease to exist and only the new one will later be used
  217. * for changes/removal.)
  218. */
  219. enum ieee80211_chanctx_switch_mode {
  220. CHANCTX_SWMODE_REASSIGN_VIF,
  221. CHANCTX_SWMODE_SWAP_CONTEXTS,
  222. };
  223. /**
  224. * struct ieee80211_vif_chanctx_switch - vif chanctx switch information
  225. *
  226. * This is structure is used to pass information about a vif that
  227. * needs to switch from one chanctx to another. The
  228. * &ieee80211_chanctx_switch_mode defines how the switch should be
  229. * done.
  230. *
  231. * @vif: the vif that should be switched from old_ctx to new_ctx
  232. * @old_ctx: the old context to which the vif was assigned
  233. * @new_ctx: the new context to which the vif must be assigned
  234. */
  235. struct ieee80211_vif_chanctx_switch {
  236. struct ieee80211_vif *vif;
  237. struct ieee80211_chanctx_conf *old_ctx;
  238. struct ieee80211_chanctx_conf *new_ctx;
  239. };
  240. /**
  241. * enum ieee80211_bss_change - BSS change notification flags
  242. *
  243. * These flags are used with the bss_info_changed() callback
  244. * to indicate which BSS parameter changed.
  245. *
  246. * @BSS_CHANGED_ASSOC: association status changed (associated/disassociated),
  247. * also implies a change in the AID.
  248. * @BSS_CHANGED_ERP_CTS_PROT: CTS protection changed
  249. * @BSS_CHANGED_ERP_PREAMBLE: preamble changed
  250. * @BSS_CHANGED_ERP_SLOT: slot timing changed
  251. * @BSS_CHANGED_HT: 802.11n parameters changed
  252. * @BSS_CHANGED_BASIC_RATES: Basic rateset changed
  253. * @BSS_CHANGED_BEACON_INT: Beacon interval changed
  254. * @BSS_CHANGED_BSSID: BSSID changed, for whatever
  255. * reason (IBSS and managed mode)
  256. * @BSS_CHANGED_BEACON: Beacon data changed, retrieve
  257. * new beacon (beaconing modes)
  258. * @BSS_CHANGED_BEACON_ENABLED: Beaconing should be
  259. * enabled/disabled (beaconing modes)
  260. * @BSS_CHANGED_CQM: Connection quality monitor config changed
  261. * @BSS_CHANGED_IBSS: IBSS join status changed
  262. * @BSS_CHANGED_ARP_FILTER: Hardware ARP filter address list or state changed.
  263. * @BSS_CHANGED_QOS: QoS for this association was enabled/disabled. Note
  264. * that it is only ever disabled for station mode.
  265. * @BSS_CHANGED_IDLE: Idle changed for this BSS/interface.
  266. * @BSS_CHANGED_SSID: SSID changed for this BSS (AP and IBSS mode)
  267. * @BSS_CHANGED_AP_PROBE_RESP: Probe Response changed for this BSS (AP mode)
  268. * @BSS_CHANGED_PS: PS changed for this BSS (STA mode)
  269. * @BSS_CHANGED_TXPOWER: TX power setting changed for this interface
  270. * @BSS_CHANGED_P2P_PS: P2P powersave settings (CTWindow, opportunistic PS)
  271. * changed (currently only in P2P client mode, GO mode will be later)
  272. * @BSS_CHANGED_BEACON_INFO: Data from the AP's beacon became available:
  273. * currently dtim_period only is under consideration.
  274. * @BSS_CHANGED_BANDWIDTH: The bandwidth used by this interface changed,
  275. * note that this is only called when it changes after the channel
  276. * context had been assigned.
  277. * @BSS_CHANGED_OCB: OCB join status changed
  278. */
  279. enum ieee80211_bss_change {
  280. BSS_CHANGED_ASSOC = 1<<0,
  281. BSS_CHANGED_ERP_CTS_PROT = 1<<1,
  282. BSS_CHANGED_ERP_PREAMBLE = 1<<2,
  283. BSS_CHANGED_ERP_SLOT = 1<<3,
  284. BSS_CHANGED_HT = 1<<4,
  285. BSS_CHANGED_BASIC_RATES = 1<<5,
  286. BSS_CHANGED_BEACON_INT = 1<<6,
  287. BSS_CHANGED_BSSID = 1<<7,
  288. BSS_CHANGED_BEACON = 1<<8,
  289. BSS_CHANGED_BEACON_ENABLED = 1<<9,
  290. BSS_CHANGED_CQM = 1<<10,
  291. BSS_CHANGED_IBSS = 1<<11,
  292. BSS_CHANGED_ARP_FILTER = 1<<12,
  293. BSS_CHANGED_QOS = 1<<13,
  294. BSS_CHANGED_IDLE = 1<<14,
  295. BSS_CHANGED_SSID = 1<<15,
  296. BSS_CHANGED_AP_PROBE_RESP = 1<<16,
  297. BSS_CHANGED_PS = 1<<17,
  298. BSS_CHANGED_TXPOWER = 1<<18,
  299. BSS_CHANGED_P2P_PS = 1<<19,
  300. BSS_CHANGED_BEACON_INFO = 1<<20,
  301. BSS_CHANGED_BANDWIDTH = 1<<21,
  302. BSS_CHANGED_OCB = 1<<22,
  303. /* when adding here, make sure to change ieee80211_reconfig */
  304. };
  305. /*
  306. * The maximum number of IPv4 addresses listed for ARP filtering. If the number
  307. * of addresses for an interface increase beyond this value, hardware ARP
  308. * filtering will be disabled.
  309. */
  310. #define IEEE80211_BSS_ARP_ADDR_LIST_LEN 4
  311. /**
  312. * enum ieee80211_event_type - event to be notified to the low level driver
  313. * @RSSI_EVENT: AP's rssi crossed the a threshold set by the driver.
  314. * @MLME_EVENT: event related to MLME
  315. * @BAR_RX_EVENT: a BAR was received
  316. */
  317. enum ieee80211_event_type {
  318. RSSI_EVENT,
  319. MLME_EVENT,
  320. BAR_RX_EVENT,
  321. };
  322. /**
  323. * enum ieee80211_rssi_event_data - relevant when event type is %RSSI_EVENT
  324. * @RSSI_EVENT_HIGH: AP's rssi went below the threshold set by the driver.
  325. * @RSSI_EVENT_LOW: AP's rssi went above the threshold set by the driver.
  326. */
  327. enum ieee80211_rssi_event_data {
  328. RSSI_EVENT_HIGH,
  329. RSSI_EVENT_LOW,
  330. };
  331. /**
  332. * struct ieee80211_rssi_event - data attached to an %RSSI_EVENT
  333. * @data: See &enum ieee80211_rssi_event_data
  334. */
  335. struct ieee80211_rssi_event {
  336. enum ieee80211_rssi_event_data data;
  337. };
  338. /**
  339. * enum ieee80211_mlme_event_data - relevant when event type is %MLME_EVENT
  340. * @AUTH_EVENT: the MLME operation is authentication
  341. * @ASSOC_EVENT: the MLME operation is association
  342. * @DEAUTH_RX_EVENT: deauth received..
  343. * @DEAUTH_TX_EVENT: deauth sent.
  344. */
  345. enum ieee80211_mlme_event_data {
  346. AUTH_EVENT,
  347. ASSOC_EVENT,
  348. DEAUTH_RX_EVENT,
  349. DEAUTH_TX_EVENT,
  350. };
  351. /**
  352. * enum ieee80211_mlme_event_status - relevant when event type is %MLME_EVENT
  353. * @MLME_SUCCESS: the MLME operation completed successfully.
  354. * @MLME_DENIED: the MLME operation was denied by the peer.
  355. * @MLME_TIMEOUT: the MLME operation timed out.
  356. */
  357. enum ieee80211_mlme_event_status {
  358. MLME_SUCCESS,
  359. MLME_DENIED,
  360. MLME_TIMEOUT,
  361. };
  362. /**
  363. * struct ieee80211_mlme_event - data attached to an %MLME_EVENT
  364. * @data: See &enum ieee80211_mlme_event_data
  365. * @status: See &enum ieee80211_mlme_event_status
  366. * @reason: the reason code if applicable
  367. */
  368. struct ieee80211_mlme_event {
  369. enum ieee80211_mlme_event_data data;
  370. enum ieee80211_mlme_event_status status;
  371. u16 reason;
  372. };
  373. /**
  374. * struct ieee80211_ba_event - data attached for BlockAck related events
  375. * @sta: pointer to the &ieee80211_sta to which this event relates
  376. * @tid: the tid
  377. * @ssn: the starting sequence number
  378. */
  379. struct ieee80211_ba_event {
  380. struct ieee80211_sta *sta;
  381. u16 tid;
  382. u16 ssn;
  383. };
  384. /**
  385. * struct ieee80211_event - event to be sent to the driver
  386. * @type: The event itself. See &enum ieee80211_event_type.
  387. * @rssi: relevant if &type is %RSSI_EVENT
  388. * @mlme: relevant if &type is %AUTH_EVENT
  389. * @ba: relevant if &type is %BAR_RX_EVENT
  390. * @u:union holding the fields above
  391. */
  392. struct ieee80211_event {
  393. enum ieee80211_event_type type;
  394. union {
  395. struct ieee80211_rssi_event rssi;
  396. struct ieee80211_mlme_event mlme;
  397. struct ieee80211_ba_event ba;
  398. } u;
  399. };
  400. /**
  401. * struct ieee80211_bss_conf - holds the BSS's changing parameters
  402. *
  403. * This structure keeps information about a BSS (and an association
  404. * to that BSS) that can change during the lifetime of the BSS.
  405. *
  406. * @assoc: association status
  407. * @ibss_joined: indicates whether this station is part of an IBSS
  408. * or not
  409. * @ibss_creator: indicates if a new IBSS network is being created
  410. * @aid: association ID number, valid only when @assoc is true
  411. * @use_cts_prot: use CTS protection
  412. * @use_short_preamble: use 802.11b short preamble;
  413. * if the hardware cannot handle this it must set the
  414. * IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE hardware flag
  415. * @use_short_slot: use short slot time (only relevant for ERP);
  416. * if the hardware cannot handle this it must set the
  417. * IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE hardware flag
  418. * @dtim_period: num of beacons before the next DTIM, for beaconing,
  419. * valid in station mode only if after the driver was notified
  420. * with the %BSS_CHANGED_BEACON_INFO flag, will be non-zero then.
  421. * @sync_tsf: last beacon's/probe response's TSF timestamp (could be old
  422. * as it may have been received during scanning long ago). If the
  423. * HW flag %IEEE80211_HW_TIMING_BEACON_ONLY is set, then this can
  424. * only come from a beacon, but might not become valid until after
  425. * association when a beacon is received (which is notified with the
  426. * %BSS_CHANGED_DTIM flag.). See also sync_dtim_count important notice.
  427. * @sync_device_ts: the device timestamp corresponding to the sync_tsf,
  428. * the driver/device can use this to calculate synchronisation
  429. * (see @sync_tsf). See also sync_dtim_count important notice.
  430. * @sync_dtim_count: Only valid when %IEEE80211_HW_TIMING_BEACON_ONLY
  431. * is requested, see @sync_tsf/@sync_device_ts.
  432. * IMPORTANT: These three sync_* parameters would possibly be out of sync
  433. * by the time the driver will use them. The synchronized view is currently
  434. * guaranteed only in certain callbacks.
  435. * @beacon_int: beacon interval
  436. * @assoc_capability: capabilities taken from assoc resp
  437. * @basic_rates: bitmap of basic rates, each bit stands for an
  438. * index into the rate table configured by the driver in
  439. * the current band.
  440. * @beacon_rate: associated AP's beacon TX rate
  441. * @mcast_rate: per-band multicast rate index + 1 (0: disabled)
  442. * @bssid: The BSSID for this BSS
  443. * @enable_beacon: whether beaconing should be enabled or not
  444. * @chandef: Channel definition for this BSS -- the hardware might be
  445. * configured a higher bandwidth than this BSS uses, for example.
  446. * @ht_operation_mode: HT operation mode like in &struct ieee80211_ht_operation.
  447. * This field is only valid when the channel type is one of the HT types.
  448. * @cqm_rssi_thold: Connection quality monitor RSSI threshold, a zero value
  449. * implies disabled
  450. * @cqm_rssi_hyst: Connection quality monitor RSSI hysteresis
  451. * @arp_addr_list: List of IPv4 addresses for hardware ARP filtering. The
  452. * may filter ARP queries targeted for other addresses than listed here.
  453. * The driver must allow ARP queries targeted for all address listed here
  454. * to pass through. An empty list implies no ARP queries need to pass.
  455. * @arp_addr_cnt: Number of addresses currently on the list. Note that this
  456. * may be larger than %IEEE80211_BSS_ARP_ADDR_LIST_LEN (the arp_addr_list
  457. * array size), it's up to the driver what to do in that case.
  458. * @qos: This is a QoS-enabled BSS.
  459. * @idle: This interface is idle. There's also a global idle flag in the
  460. * hardware config which may be more appropriate depending on what
  461. * your driver/device needs to do.
  462. * @ps: power-save mode (STA only). This flag is NOT affected by
  463. * offchannel/dynamic_ps operations.
  464. * @ssid: The SSID of the current vif. Valid in AP and IBSS mode.
  465. * @ssid_len: Length of SSID given in @ssid.
  466. * @hidden_ssid: The SSID of the current vif is hidden. Only valid in AP-mode.
  467. * @txpower: TX power in dBm
  468. * @txpower_type: TX power adjustment used to control per packet Transmit
  469. * Power Control (TPC) in lower driver for the current vif. In particular
  470. * TPC is enabled if value passed in %txpower_type is
  471. * NL80211_TX_POWER_LIMITED (allow using less than specified from
  472. * userspace), whereas TPC is disabled if %txpower_type is set to
  473. * NL80211_TX_POWER_FIXED (use value configured from userspace)
  474. * @p2p_noa_attr: P2P NoA attribute for P2P powersave
  475. */
  476. struct ieee80211_bss_conf {
  477. const u8 *bssid;
  478. /* association related data */
  479. bool assoc, ibss_joined;
  480. bool ibss_creator;
  481. u16 aid;
  482. /* erp related data */
  483. bool use_cts_prot;
  484. bool use_short_preamble;
  485. bool use_short_slot;
  486. bool enable_beacon;
  487. u8 dtim_period;
  488. u16 beacon_int;
  489. u16 assoc_capability;
  490. u64 sync_tsf;
  491. u32 sync_device_ts;
  492. u8 sync_dtim_count;
  493. u32 basic_rates;
  494. struct ieee80211_rate *beacon_rate;
  495. int mcast_rate[IEEE80211_NUM_BANDS];
  496. u16 ht_operation_mode;
  497. s32 cqm_rssi_thold;
  498. u32 cqm_rssi_hyst;
  499. struct cfg80211_chan_def chandef;
  500. __be32 arp_addr_list[IEEE80211_BSS_ARP_ADDR_LIST_LEN];
  501. int arp_addr_cnt;
  502. bool qos;
  503. bool idle;
  504. bool ps;
  505. u8 ssid[IEEE80211_MAX_SSID_LEN];
  506. size_t ssid_len;
  507. bool hidden_ssid;
  508. int txpower;
  509. enum nl80211_tx_power_setting txpower_type;
  510. struct ieee80211_p2p_noa_attr p2p_noa_attr;
  511. };
  512. /**
  513. * enum mac80211_tx_info_flags - flags to describe transmission information/status
  514. *
  515. * These flags are used with the @flags member of &ieee80211_tx_info.
  516. *
  517. * @IEEE80211_TX_CTL_REQ_TX_STATUS: require TX status callback for this frame.
  518. * @IEEE80211_TX_CTL_ASSIGN_SEQ: The driver has to assign a sequence
  519. * number to this frame, taking care of not overwriting the fragment
  520. * number and increasing the sequence number only when the
  521. * IEEE80211_TX_CTL_FIRST_FRAGMENT flag is set. mac80211 will properly
  522. * assign sequence numbers to QoS-data frames but cannot do so correctly
  523. * for non-QoS-data and management frames because beacons need them from
  524. * that counter as well and mac80211 cannot guarantee proper sequencing.
  525. * If this flag is set, the driver should instruct the hardware to
  526. * assign a sequence number to the frame or assign one itself. Cf. IEEE
  527. * 802.11-2007 7.1.3.4.1 paragraph 3. This flag will always be set for
  528. * beacons and always be clear for frames without a sequence number field.
  529. * @IEEE80211_TX_CTL_NO_ACK: tell the low level not to wait for an ack
  530. * @IEEE80211_TX_CTL_CLEAR_PS_FILT: clear powersave filter for destination
  531. * station
  532. * @IEEE80211_TX_CTL_FIRST_FRAGMENT: this is a first fragment of the frame
  533. * @IEEE80211_TX_CTL_SEND_AFTER_DTIM: send this frame after DTIM beacon
  534. * @IEEE80211_TX_CTL_AMPDU: this frame should be sent as part of an A-MPDU
  535. * @IEEE80211_TX_CTL_INJECTED: Frame was injected, internal to mac80211.
  536. * @IEEE80211_TX_STAT_TX_FILTERED: The frame was not transmitted
  537. * because the destination STA was in powersave mode. Note that to
  538. * avoid race conditions, the filter must be set by the hardware or
  539. * firmware upon receiving a frame that indicates that the station
  540. * went to sleep (must be done on device to filter frames already on
  541. * the queue) and may only be unset after mac80211 gives the OK for
  542. * that by setting the IEEE80211_TX_CTL_CLEAR_PS_FILT (see above),
  543. * since only then is it guaranteed that no more frames are in the
  544. * hardware queue.
  545. * @IEEE80211_TX_STAT_ACK: Frame was acknowledged
  546. * @IEEE80211_TX_STAT_AMPDU: The frame was aggregated, so status
  547. * is for the whole aggregation.
  548. * @IEEE80211_TX_STAT_AMPDU_NO_BACK: no block ack was returned,
  549. * so consider using block ack request (BAR).
  550. * @IEEE80211_TX_CTL_RATE_CTRL_PROBE: internal to mac80211, can be
  551. * set by rate control algorithms to indicate probe rate, will
  552. * be cleared for fragmented frames (except on the last fragment)
  553. * @IEEE80211_TX_INTFL_OFFCHAN_TX_OK: Internal to mac80211. Used to indicate
  554. * that a frame can be transmitted while the queues are stopped for
  555. * off-channel operation.
  556. * @IEEE80211_TX_INTFL_NEED_TXPROCESSING: completely internal to mac80211,
  557. * used to indicate that a pending frame requires TX processing before
  558. * it can be sent out.
  559. * @IEEE80211_TX_INTFL_RETRIED: completely internal to mac80211,
  560. * used to indicate that a frame was already retried due to PS
  561. * @IEEE80211_TX_INTFL_DONT_ENCRYPT: completely internal to mac80211,
  562. * used to indicate frame should not be encrypted
  563. * @IEEE80211_TX_CTL_NO_PS_BUFFER: This frame is a response to a poll
  564. * frame (PS-Poll or uAPSD) or a non-bufferable MMPDU and must
  565. * be sent although the station is in powersave mode.
  566. * @IEEE80211_TX_CTL_MORE_FRAMES: More frames will be passed to the
  567. * transmit function after the current frame, this can be used
  568. * by drivers to kick the DMA queue only if unset or when the
  569. * queue gets full.
  570. * @IEEE80211_TX_INTFL_RETRANSMISSION: This frame is being retransmitted
  571. * after TX status because the destination was asleep, it must not
  572. * be modified again (no seqno assignment, crypto, etc.)
  573. * @IEEE80211_TX_INTFL_MLME_CONN_TX: This frame was transmitted by the MLME
  574. * code for connection establishment, this indicates that its status
  575. * should kick the MLME state machine.
  576. * @IEEE80211_TX_INTFL_NL80211_FRAME_TX: Frame was requested through nl80211
  577. * MLME command (internal to mac80211 to figure out whether to send TX
  578. * status to user space)
  579. * @IEEE80211_TX_CTL_LDPC: tells the driver to use LDPC for this frame
  580. * @IEEE80211_TX_CTL_STBC: Enables Space-Time Block Coding (STBC) for this
  581. * frame and selects the maximum number of streams that it can use.
  582. * @IEEE80211_TX_CTL_TX_OFFCHAN: Marks this packet to be transmitted on
  583. * the off-channel channel when a remain-on-channel offload is done
  584. * in hardware -- normal packets still flow and are expected to be
  585. * handled properly by the device.
  586. * @IEEE80211_TX_INTFL_TKIP_MIC_FAILURE: Marks this packet to be used for TKIP
  587. * testing. It will be sent out with incorrect Michael MIC key to allow
  588. * TKIP countermeasures to be tested.
  589. * @IEEE80211_TX_CTL_NO_CCK_RATE: This frame will be sent at non CCK rate.
  590. * This flag is actually used for management frame especially for P2P
  591. * frames not being sent at CCK rate in 2GHz band.
  592. * @IEEE80211_TX_STATUS_EOSP: This packet marks the end of service period,
  593. * when its status is reported the service period ends. For frames in
  594. * an SP that mac80211 transmits, it is already set; for driver frames
  595. * the driver may set this flag. It is also used to do the same for
  596. * PS-Poll responses.
  597. * @IEEE80211_TX_CTL_USE_MINRATE: This frame will be sent at lowest rate.
  598. * This flag is used to send nullfunc frame at minimum rate when
  599. * the nullfunc is used for connection monitoring purpose.
  600. * @IEEE80211_TX_CTL_DONTFRAG: Don't fragment this packet even if it
  601. * would be fragmented by size (this is optional, only used for
  602. * monitor injection).
  603. * @IEEE80211_TX_STAT_NOACK_TRANSMITTED: A frame that was marked with
  604. * IEEE80211_TX_CTL_NO_ACK has been successfully transmitted without
  605. * any errors (like issues specific to the driver/HW).
  606. * This flag must not be set for frames that don't request no-ack
  607. * behaviour with IEEE80211_TX_CTL_NO_ACK.
  608. *
  609. * Note: If you have to add new flags to the enumeration, then don't
  610. * forget to update %IEEE80211_TX_TEMPORARY_FLAGS when necessary.
  611. */
  612. enum mac80211_tx_info_flags {
  613. IEEE80211_TX_CTL_REQ_TX_STATUS = BIT(0),
  614. IEEE80211_TX_CTL_ASSIGN_SEQ = BIT(1),
  615. IEEE80211_TX_CTL_NO_ACK = BIT(2),
  616. IEEE80211_TX_CTL_CLEAR_PS_FILT = BIT(3),
  617. IEEE80211_TX_CTL_FIRST_FRAGMENT = BIT(4),
  618. IEEE80211_TX_CTL_SEND_AFTER_DTIM = BIT(5),
  619. IEEE80211_TX_CTL_AMPDU = BIT(6),
  620. IEEE80211_TX_CTL_INJECTED = BIT(7),
  621. IEEE80211_TX_STAT_TX_FILTERED = BIT(8),
  622. IEEE80211_TX_STAT_ACK = BIT(9),
  623. IEEE80211_TX_STAT_AMPDU = BIT(10),
  624. IEEE80211_TX_STAT_AMPDU_NO_BACK = BIT(11),
  625. IEEE80211_TX_CTL_RATE_CTRL_PROBE = BIT(12),
  626. IEEE80211_TX_INTFL_OFFCHAN_TX_OK = BIT(13),
  627. IEEE80211_TX_INTFL_NEED_TXPROCESSING = BIT(14),
  628. IEEE80211_TX_INTFL_RETRIED = BIT(15),
  629. IEEE80211_TX_INTFL_DONT_ENCRYPT = BIT(16),
  630. IEEE80211_TX_CTL_NO_PS_BUFFER = BIT(17),
  631. IEEE80211_TX_CTL_MORE_FRAMES = BIT(18),
  632. IEEE80211_TX_INTFL_RETRANSMISSION = BIT(19),
  633. IEEE80211_TX_INTFL_MLME_CONN_TX = BIT(20),
  634. IEEE80211_TX_INTFL_NL80211_FRAME_TX = BIT(21),
  635. IEEE80211_TX_CTL_LDPC = BIT(22),
  636. IEEE80211_TX_CTL_STBC = BIT(23) | BIT(24),
  637. IEEE80211_TX_CTL_TX_OFFCHAN = BIT(25),
  638. IEEE80211_TX_INTFL_TKIP_MIC_FAILURE = BIT(26),
  639. IEEE80211_TX_CTL_NO_CCK_RATE = BIT(27),
  640. IEEE80211_TX_STATUS_EOSP = BIT(28),
  641. IEEE80211_TX_CTL_USE_MINRATE = BIT(29),
  642. IEEE80211_TX_CTL_DONTFRAG = BIT(30),
  643. IEEE80211_TX_STAT_NOACK_TRANSMITTED = BIT(31),
  644. };
  645. #define IEEE80211_TX_CTL_STBC_SHIFT 23
  646. /**
  647. * enum mac80211_tx_control_flags - flags to describe transmit control
  648. *
  649. * @IEEE80211_TX_CTRL_PORT_CTRL_PROTO: this frame is a port control
  650. * protocol frame (e.g. EAP)
  651. * @IEEE80211_TX_CTRL_PS_RESPONSE: This frame is a response to a poll
  652. * frame (PS-Poll or uAPSD).
  653. *
  654. * These flags are used in tx_info->control.flags.
  655. */
  656. enum mac80211_tx_control_flags {
  657. IEEE80211_TX_CTRL_PORT_CTRL_PROTO = BIT(0),
  658. IEEE80211_TX_CTRL_PS_RESPONSE = BIT(1),
  659. };
  660. /*
  661. * This definition is used as a mask to clear all temporary flags, which are
  662. * set by the tx handlers for each transmission attempt by the mac80211 stack.
  663. */
  664. #define IEEE80211_TX_TEMPORARY_FLAGS (IEEE80211_TX_CTL_NO_ACK | \
  665. IEEE80211_TX_CTL_CLEAR_PS_FILT | IEEE80211_TX_CTL_FIRST_FRAGMENT | \
  666. IEEE80211_TX_CTL_SEND_AFTER_DTIM | IEEE80211_TX_CTL_AMPDU | \
  667. IEEE80211_TX_STAT_TX_FILTERED | IEEE80211_TX_STAT_ACK | \
  668. IEEE80211_TX_STAT_AMPDU | IEEE80211_TX_STAT_AMPDU_NO_BACK | \
  669. IEEE80211_TX_CTL_RATE_CTRL_PROBE | IEEE80211_TX_CTL_NO_PS_BUFFER | \
  670. IEEE80211_TX_CTL_MORE_FRAMES | IEEE80211_TX_CTL_LDPC | \
  671. IEEE80211_TX_CTL_STBC | IEEE80211_TX_STATUS_EOSP)
  672. /**
  673. * enum mac80211_rate_control_flags - per-rate flags set by the
  674. * Rate Control algorithm.
  675. *
  676. * These flags are set by the Rate control algorithm for each rate during tx,
  677. * in the @flags member of struct ieee80211_tx_rate.
  678. *
  679. * @IEEE80211_TX_RC_USE_RTS_CTS: Use RTS/CTS exchange for this rate.
  680. * @IEEE80211_TX_RC_USE_CTS_PROTECT: CTS-to-self protection is required.
  681. * This is set if the current BSS requires ERP protection.
  682. * @IEEE80211_TX_RC_USE_SHORT_PREAMBLE: Use short preamble.
  683. * @IEEE80211_TX_RC_MCS: HT rate.
  684. * @IEEE80211_TX_RC_VHT_MCS: VHT MCS rate, in this case the idx field is split
  685. * into a higher 4 bits (Nss) and lower 4 bits (MCS number)
  686. * @IEEE80211_TX_RC_GREEN_FIELD: Indicates whether this rate should be used in
  687. * Greenfield mode.
  688. * @IEEE80211_TX_RC_40_MHZ_WIDTH: Indicates if the Channel Width should be 40 MHz.
  689. * @IEEE80211_TX_RC_80_MHZ_WIDTH: Indicates 80 MHz transmission
  690. * @IEEE80211_TX_RC_160_MHZ_WIDTH: Indicates 160 MHz transmission
  691. * (80+80 isn't supported yet)
  692. * @IEEE80211_TX_RC_DUP_DATA: The frame should be transmitted on both of the
  693. * adjacent 20 MHz channels, if the current channel type is
  694. * NL80211_CHAN_HT40MINUS or NL80211_CHAN_HT40PLUS.
  695. * @IEEE80211_TX_RC_SHORT_GI: Short Guard interval should be used for this rate.
  696. */
  697. enum mac80211_rate_control_flags {
  698. IEEE80211_TX_RC_USE_RTS_CTS = BIT(0),
  699. IEEE80211_TX_RC_USE_CTS_PROTECT = BIT(1),
  700. IEEE80211_TX_RC_USE_SHORT_PREAMBLE = BIT(2),
  701. /* rate index is an HT/VHT MCS instead of an index */
  702. IEEE80211_TX_RC_MCS = BIT(3),
  703. IEEE80211_TX_RC_GREEN_FIELD = BIT(4),
  704. IEEE80211_TX_RC_40_MHZ_WIDTH = BIT(5),
  705. IEEE80211_TX_RC_DUP_DATA = BIT(6),
  706. IEEE80211_TX_RC_SHORT_GI = BIT(7),
  707. IEEE80211_TX_RC_VHT_MCS = BIT(8),
  708. IEEE80211_TX_RC_80_MHZ_WIDTH = BIT(9),
  709. IEEE80211_TX_RC_160_MHZ_WIDTH = BIT(10),
  710. };
  711. /* there are 40 bytes if you don't need the rateset to be kept */
  712. #define IEEE80211_TX_INFO_DRIVER_DATA_SIZE 40
  713. /* if you do need the rateset, then you have less space */
  714. #define IEEE80211_TX_INFO_RATE_DRIVER_DATA_SIZE 24
  715. /* maximum number of rate stages */
  716. #define IEEE80211_TX_MAX_RATES 4
  717. /* maximum number of rate table entries */
  718. #define IEEE80211_TX_RATE_TABLE_SIZE 4
  719. /**
  720. * struct ieee80211_tx_rate - rate selection/status
  721. *
  722. * @idx: rate index to attempt to send with
  723. * @flags: rate control flags (&enum mac80211_rate_control_flags)
  724. * @count: number of tries in this rate before going to the next rate
  725. *
  726. * A value of -1 for @idx indicates an invalid rate and, if used
  727. * in an array of retry rates, that no more rates should be tried.
  728. *
  729. * When used for transmit status reporting, the driver should
  730. * always report the rate along with the flags it used.
  731. *
  732. * &struct ieee80211_tx_info contains an array of these structs
  733. * in the control information, and it will be filled by the rate
  734. * control algorithm according to what should be sent. For example,
  735. * if this array contains, in the format { <idx>, <count> } the
  736. * information
  737. * { 3, 2 }, { 2, 2 }, { 1, 4 }, { -1, 0 }, { -1, 0 }
  738. * then this means that the frame should be transmitted
  739. * up to twice at rate 3, up to twice at rate 2, and up to four
  740. * times at rate 1 if it doesn't get acknowledged. Say it gets
  741. * acknowledged by the peer after the fifth attempt, the status
  742. * information should then contain
  743. * { 3, 2 }, { 2, 2 }, { 1, 1 }, { -1, 0 } ...
  744. * since it was transmitted twice at rate 3, twice at rate 2
  745. * and once at rate 1 after which we received an acknowledgement.
  746. */
  747. struct ieee80211_tx_rate {
  748. s8 idx;
  749. u16 count:5,
  750. flags:11;
  751. } __packed;
  752. #define IEEE80211_MAX_TX_RETRY 31
  753. static inline void ieee80211_rate_set_vht(struct ieee80211_tx_rate *rate,
  754. u8 mcs, u8 nss)
  755. {
  756. WARN_ON(mcs & ~0xF);
  757. WARN_ON((nss - 1) & ~0x7);
  758. rate->idx = ((nss - 1) << 4) | mcs;
  759. }
  760. static inline u8
  761. ieee80211_rate_get_vht_mcs(const struct ieee80211_tx_rate *rate)
  762. {
  763. return rate->idx & 0xF;
  764. }
  765. static inline u8
  766. ieee80211_rate_get_vht_nss(const struct ieee80211_tx_rate *rate)
  767. {
  768. return (rate->idx >> 4) + 1;
  769. }
  770. /**
  771. * struct ieee80211_tx_info - skb transmit information
  772. *
  773. * This structure is placed in skb->cb for three uses:
  774. * (1) mac80211 TX control - mac80211 tells the driver what to do
  775. * (2) driver internal use (if applicable)
  776. * (3) TX status information - driver tells mac80211 what happened
  777. *
  778. * @flags: transmit info flags, defined above
  779. * @band: the band to transmit on (use for checking for races)
  780. * @hw_queue: HW queue to put the frame on, skb_get_queue_mapping() gives the AC
  781. * @ack_frame_id: internal frame ID for TX status, used internally
  782. * @control: union for control data
  783. * @status: union for status data
  784. * @driver_data: array of driver_data pointers
  785. * @ampdu_ack_len: number of acked aggregated frames.
  786. * relevant only if IEEE80211_TX_STAT_AMPDU was set.
  787. * @ampdu_len: number of aggregated frames.
  788. * relevant only if IEEE80211_TX_STAT_AMPDU was set.
  789. * @ack_signal: signal strength of the ACK frame
  790. */
  791. struct ieee80211_tx_info {
  792. /* common information */
  793. u32 flags;
  794. u8 band;
  795. u8 hw_queue;
  796. u16 ack_frame_id;
  797. union {
  798. struct {
  799. union {
  800. /* rate control */
  801. struct {
  802. struct ieee80211_tx_rate rates[
  803. IEEE80211_TX_MAX_RATES];
  804. s8 rts_cts_rate_idx;
  805. u8 use_rts:1;
  806. u8 use_cts_prot:1;
  807. u8 short_preamble:1;
  808. u8 skip_table:1;
  809. /* 2 bytes free */
  810. };
  811. /* only needed before rate control */
  812. unsigned long jiffies;
  813. };
  814. /* NB: vif can be NULL for injected frames */
  815. struct ieee80211_vif *vif;
  816. struct ieee80211_key_conf *hw_key;
  817. u32 flags;
  818. /* 4 bytes free */
  819. } control;
  820. struct {
  821. struct ieee80211_tx_rate rates[IEEE80211_TX_MAX_RATES];
  822. s32 ack_signal;
  823. u8 ampdu_ack_len;
  824. u8 ampdu_len;
  825. u8 antenna;
  826. u16 tx_time;
  827. void *status_driver_data[19 / sizeof(void *)];
  828. } status;
  829. struct {
  830. struct ieee80211_tx_rate driver_rates[
  831. IEEE80211_TX_MAX_RATES];
  832. u8 pad[4];
  833. void *rate_driver_data[
  834. IEEE80211_TX_INFO_RATE_DRIVER_DATA_SIZE / sizeof(void *)];
  835. };
  836. void *driver_data[
  837. IEEE80211_TX_INFO_DRIVER_DATA_SIZE / sizeof(void *)];
  838. };
  839. };
  840. /**
  841. * struct ieee80211_scan_ies - descriptors for different blocks of IEs
  842. *
  843. * This structure is used to point to different blocks of IEs in HW scan
  844. * and scheduled scan. These blocks contain the IEs passed by userspace
  845. * and the ones generated by mac80211.
  846. *
  847. * @ies: pointers to band specific IEs.
  848. * @len: lengths of band_specific IEs.
  849. * @common_ies: IEs for all bands (especially vendor specific ones)
  850. * @common_ie_len: length of the common_ies
  851. */
  852. struct ieee80211_scan_ies {
  853. const u8 *ies[IEEE80211_NUM_BANDS];
  854. size_t len[IEEE80211_NUM_BANDS];
  855. const u8 *common_ies;
  856. size_t common_ie_len;
  857. };
  858. static inline struct ieee80211_tx_info *IEEE80211_SKB_CB(struct sk_buff *skb)
  859. {
  860. return (struct ieee80211_tx_info *)skb->cb;
  861. }
  862. static inline struct ieee80211_rx_status *IEEE80211_SKB_RXCB(struct sk_buff *skb)
  863. {
  864. return (struct ieee80211_rx_status *)skb->cb;
  865. }
  866. /**
  867. * ieee80211_tx_info_clear_status - clear TX status
  868. *
  869. * @info: The &struct ieee80211_tx_info to be cleared.
  870. *
  871. * When the driver passes an skb back to mac80211, it must report
  872. * a number of things in TX status. This function clears everything
  873. * in the TX status but the rate control information (it does clear
  874. * the count since you need to fill that in anyway).
  875. *
  876. * NOTE: You can only use this function if you do NOT use
  877. * info->driver_data! Use info->rate_driver_data
  878. * instead if you need only the less space that allows.
  879. */
  880. static inline void
  881. ieee80211_tx_info_clear_status(struct ieee80211_tx_info *info)
  882. {
  883. int i;
  884. BUILD_BUG_ON(offsetof(struct ieee80211_tx_info, status.rates) !=
  885. offsetof(struct ieee80211_tx_info, control.rates));
  886. BUILD_BUG_ON(offsetof(struct ieee80211_tx_info, status.rates) !=
  887. offsetof(struct ieee80211_tx_info, driver_rates));
  888. BUILD_BUG_ON(offsetof(struct ieee80211_tx_info, status.rates) != 8);
  889. /* clear the rate counts */
  890. for (i = 0; i < IEEE80211_TX_MAX_RATES; i++)
  891. info->status.rates[i].count = 0;
  892. BUILD_BUG_ON(
  893. offsetof(struct ieee80211_tx_info, status.ack_signal) != 20);
  894. memset(&info->status.ampdu_ack_len, 0,
  895. sizeof(struct ieee80211_tx_info) -
  896. offsetof(struct ieee80211_tx_info, status.ampdu_ack_len));
  897. }
  898. /**
  899. * enum mac80211_rx_flags - receive flags
  900. *
  901. * These flags are used with the @flag member of &struct ieee80211_rx_status.
  902. * @RX_FLAG_MMIC_ERROR: Michael MIC error was reported on this frame.
  903. * Use together with %RX_FLAG_MMIC_STRIPPED.
  904. * @RX_FLAG_DECRYPTED: This frame was decrypted in hardware.
  905. * @RX_FLAG_MMIC_STRIPPED: the Michael MIC is stripped off this frame,
  906. * verification has been done by the hardware.
  907. * @RX_FLAG_IV_STRIPPED: The IV/ICV are stripped from this frame.
  908. * If this flag is set, the stack cannot do any replay detection
  909. * hence the driver or hardware will have to do that.
  910. * @RX_FLAG_FAILED_FCS_CRC: Set this flag if the FCS check failed on
  911. * the frame.
  912. * @RX_FLAG_FAILED_PLCP_CRC: Set this flag if the PCLP check failed on
  913. * the frame.
  914. * @RX_FLAG_MACTIME_START: The timestamp passed in the RX status (@mactime
  915. * field) is valid and contains the time the first symbol of the MPDU
  916. * was received. This is useful in monitor mode and for proper IBSS
  917. * merging.
  918. * @RX_FLAG_MACTIME_END: The timestamp passed in the RX status (@mactime
  919. * field) is valid and contains the time the last symbol of the MPDU
  920. * (including FCS) was received.
  921. * @RX_FLAG_SHORTPRE: Short preamble was used for this frame
  922. * @RX_FLAG_HT: HT MCS was used and rate_idx is MCS index
  923. * @RX_FLAG_VHT: VHT MCS was used and rate_index is MCS index
  924. * @RX_FLAG_40MHZ: HT40 (40 MHz) was used
  925. * @RX_FLAG_SHORT_GI: Short guard interval was used
  926. * @RX_FLAG_NO_SIGNAL_VAL: The signal strength value is not present.
  927. * Valid only for data frames (mainly A-MPDU)
  928. * @RX_FLAG_HT_GF: This frame was received in a HT-greenfield transmission, if
  929. * the driver fills this value it should add %IEEE80211_RADIOTAP_MCS_HAVE_FMT
  930. * to hw.radiotap_mcs_details to advertise that fact
  931. * @RX_FLAG_AMPDU_DETAILS: A-MPDU details are known, in particular the reference
  932. * number (@ampdu_reference) must be populated and be a distinct number for
  933. * each A-MPDU
  934. * @RX_FLAG_AMPDU_REPORT_ZEROLEN: driver reports 0-length subframes
  935. * @RX_FLAG_AMPDU_IS_ZEROLEN: This is a zero-length subframe, for
  936. * monitoring purposes only
  937. * @RX_FLAG_AMPDU_LAST_KNOWN: last subframe is known, should be set on all
  938. * subframes of a single A-MPDU
  939. * @RX_FLAG_AMPDU_IS_LAST: this subframe is the last subframe of the A-MPDU
  940. * @RX_FLAG_AMPDU_DELIM_CRC_ERROR: A delimiter CRC error has been detected
  941. * on this subframe
  942. * @RX_FLAG_AMPDU_DELIM_CRC_KNOWN: The delimiter CRC field is known (the CRC
  943. * is stored in the @ampdu_delimiter_crc field)
  944. * @RX_FLAG_LDPC: LDPC was used
  945. * @RX_FLAG_STBC_MASK: STBC 2 bit bitmask. 1 - Nss=1, 2 - Nss=2, 3 - Nss=3
  946. * @RX_FLAG_10MHZ: 10 MHz (half channel) was used
  947. * @RX_FLAG_5MHZ: 5 MHz (quarter channel) was used
  948. * @RX_FLAG_AMSDU_MORE: Some drivers may prefer to report separate A-MSDU
  949. * subframes instead of a one huge frame for performance reasons.
  950. * All, but the last MSDU from an A-MSDU should have this flag set. E.g.
  951. * if an A-MSDU has 3 frames, the first 2 must have the flag set, while
  952. * the 3rd (last) one must not have this flag set. The flag is used to
  953. * deal with retransmission/duplication recovery properly since A-MSDU
  954. * subframes share the same sequence number. Reported subframes can be
  955. * either regular MSDU or singly A-MSDUs. Subframes must not be
  956. * interleaved with other frames.
  957. * @RX_FLAG_RADIOTAP_VENDOR_DATA: This frame contains vendor-specific
  958. * radiotap data in the skb->data (before the frame) as described by
  959. * the &struct ieee80211_vendor_radiotap.
  960. */
  961. enum mac80211_rx_flags {
  962. RX_FLAG_MMIC_ERROR = BIT(0),
  963. RX_FLAG_DECRYPTED = BIT(1),
  964. RX_FLAG_MMIC_STRIPPED = BIT(3),
  965. RX_FLAG_IV_STRIPPED = BIT(4),
  966. RX_FLAG_FAILED_FCS_CRC = BIT(5),
  967. RX_FLAG_FAILED_PLCP_CRC = BIT(6),
  968. RX_FLAG_MACTIME_START = BIT(7),
  969. RX_FLAG_SHORTPRE = BIT(8),
  970. RX_FLAG_HT = BIT(9),
  971. RX_FLAG_40MHZ = BIT(10),
  972. RX_FLAG_SHORT_GI = BIT(11),
  973. RX_FLAG_NO_SIGNAL_VAL = BIT(12),
  974. RX_FLAG_HT_GF = BIT(13),
  975. RX_FLAG_AMPDU_DETAILS = BIT(14),
  976. RX_FLAG_AMPDU_REPORT_ZEROLEN = BIT(15),
  977. RX_FLAG_AMPDU_IS_ZEROLEN = BIT(16),
  978. RX_FLAG_AMPDU_LAST_KNOWN = BIT(17),
  979. RX_FLAG_AMPDU_IS_LAST = BIT(18),
  980. RX_FLAG_AMPDU_DELIM_CRC_ERROR = BIT(19),
  981. RX_FLAG_AMPDU_DELIM_CRC_KNOWN = BIT(20),
  982. RX_FLAG_MACTIME_END = BIT(21),
  983. RX_FLAG_VHT = BIT(22),
  984. RX_FLAG_LDPC = BIT(23),
  985. RX_FLAG_STBC_MASK = BIT(26) | BIT(27),
  986. RX_FLAG_10MHZ = BIT(28),
  987. RX_FLAG_5MHZ = BIT(29),
  988. RX_FLAG_AMSDU_MORE = BIT(30),
  989. RX_FLAG_RADIOTAP_VENDOR_DATA = BIT(31),
  990. };
  991. #define RX_FLAG_STBC_SHIFT 26
  992. /**
  993. * enum mac80211_rx_vht_flags - receive VHT flags
  994. *
  995. * These flags are used with the @vht_flag member of
  996. * &struct ieee80211_rx_status.
  997. * @RX_VHT_FLAG_80MHZ: 80 MHz was used
  998. * @RX_VHT_FLAG_160MHZ: 160 MHz was used
  999. * @RX_VHT_FLAG_BF: packet was beamformed
  1000. */
  1001. enum mac80211_rx_vht_flags {
  1002. RX_VHT_FLAG_80MHZ = BIT(0),
  1003. RX_VHT_FLAG_160MHZ = BIT(1),
  1004. RX_VHT_FLAG_BF = BIT(2),
  1005. };
  1006. /**
  1007. * struct ieee80211_rx_status - receive status
  1008. *
  1009. * The low-level driver should provide this information (the subset
  1010. * supported by hardware) to the 802.11 code with each received
  1011. * frame, in the skb's control buffer (cb).
  1012. *
  1013. * @mactime: value in microseconds of the 64-bit Time Synchronization Function
  1014. * (TSF) timer when the first data symbol (MPDU) arrived at the hardware.
  1015. * @device_timestamp: arbitrary timestamp for the device, mac80211 doesn't use
  1016. * it but can store it and pass it back to the driver for synchronisation
  1017. * @band: the active band when this frame was received
  1018. * @freq: frequency the radio was tuned to when receiving this frame, in MHz
  1019. * @signal: signal strength when receiving this frame, either in dBm, in dB or
  1020. * unspecified depending on the hardware capabilities flags
  1021. * @IEEE80211_HW_SIGNAL_*
  1022. * @chains: bitmask of receive chains for which separate signal strength
  1023. * values were filled.
  1024. * @chain_signal: per-chain signal strength, in dBm (unlike @signal, doesn't
  1025. * support dB or unspecified units)
  1026. * @antenna: antenna used
  1027. * @rate_idx: index of data rate into band's supported rates or MCS index if
  1028. * HT or VHT is used (%RX_FLAG_HT/%RX_FLAG_VHT)
  1029. * @vht_nss: number of streams (VHT only)
  1030. * @flag: %RX_FLAG_*
  1031. * @vht_flag: %RX_VHT_FLAG_*
  1032. * @rx_flags: internal RX flags for mac80211
  1033. * @ampdu_reference: A-MPDU reference number, must be a different value for
  1034. * each A-MPDU but the same for each subframe within one A-MPDU
  1035. * @ampdu_delimiter_crc: A-MPDU delimiter CRC
  1036. */
  1037. struct ieee80211_rx_status {
  1038. u64 mactime;
  1039. u32 device_timestamp;
  1040. u32 ampdu_reference;
  1041. u32 flag;
  1042. u16 freq;
  1043. u8 vht_flag;
  1044. u8 rate_idx;
  1045. u8 vht_nss;
  1046. u8 rx_flags;
  1047. u8 band;
  1048. u8 antenna;
  1049. s8 signal;
  1050. u8 chains;
  1051. s8 chain_signal[IEEE80211_MAX_CHAINS];
  1052. u8 ampdu_delimiter_crc;
  1053. };
  1054. /**
  1055. * struct ieee80211_vendor_radiotap - vendor radiotap data information
  1056. * @present: presence bitmap for this vendor namespace
  1057. * (this could be extended in the future if any vendor needs more
  1058. * bits, the radiotap spec does allow for that)
  1059. * @align: radiotap vendor namespace alignment. This defines the needed
  1060. * alignment for the @data field below, not for the vendor namespace
  1061. * description itself (which has a fixed 2-byte alignment)
  1062. * Must be a power of two, and be set to at least 1!
  1063. * @oui: radiotap vendor namespace OUI
  1064. * @subns: radiotap vendor sub namespace
  1065. * @len: radiotap vendor sub namespace skip length, if alignment is done
  1066. * then that's added to this, i.e. this is only the length of the
  1067. * @data field.
  1068. * @pad: number of bytes of padding after the @data, this exists so that
  1069. * the skb data alignment can be preserved even if the data has odd
  1070. * length
  1071. * @data: the actual vendor namespace data
  1072. *
  1073. * This struct, including the vendor data, goes into the skb->data before
  1074. * the 802.11 header. It's split up in mac80211 using the align/oui/subns
  1075. * data.
  1076. */
  1077. struct ieee80211_vendor_radiotap {
  1078. u32 present;
  1079. u8 align;
  1080. u8 oui[3];
  1081. u8 subns;
  1082. u8 pad;
  1083. u16 len;
  1084. u8 data[];
  1085. } __packed;
  1086. /**
  1087. * enum ieee80211_conf_flags - configuration flags
  1088. *
  1089. * Flags to define PHY configuration options
  1090. *
  1091. * @IEEE80211_CONF_MONITOR: there's a monitor interface present -- use this
  1092. * to determine for example whether to calculate timestamps for packets
  1093. * or not, do not use instead of filter flags!
  1094. * @IEEE80211_CONF_PS: Enable 802.11 power save mode (managed mode only).
  1095. * This is the power save mode defined by IEEE 802.11-2007 section 11.2,
  1096. * meaning that the hardware still wakes up for beacons, is able to
  1097. * transmit frames and receive the possible acknowledgment frames.
  1098. * Not to be confused with hardware specific wakeup/sleep states,
  1099. * driver is responsible for that. See the section "Powersave support"
  1100. * for more.
  1101. * @IEEE80211_CONF_IDLE: The device is running, but idle; if the flag is set
  1102. * the driver should be prepared to handle configuration requests but
  1103. * may turn the device off as much as possible. Typically, this flag will
  1104. * be set when an interface is set UP but not associated or scanning, but
  1105. * it can also be unset in that case when monitor interfaces are active.
  1106. * @IEEE80211_CONF_OFFCHANNEL: The device is currently not on its main
  1107. * operating channel.
  1108. */
  1109. enum ieee80211_conf_flags {
  1110. IEEE80211_CONF_MONITOR = (1<<0),
  1111. IEEE80211_CONF_PS = (1<<1),
  1112. IEEE80211_CONF_IDLE = (1<<2),
  1113. IEEE80211_CONF_OFFCHANNEL = (1<<3),
  1114. };
  1115. /**
  1116. * enum ieee80211_conf_changed - denotes which configuration changed
  1117. *
  1118. * @IEEE80211_CONF_CHANGE_LISTEN_INTERVAL: the listen interval changed
  1119. * @IEEE80211_CONF_CHANGE_MONITOR: the monitor flag changed
  1120. * @IEEE80211_CONF_CHANGE_PS: the PS flag or dynamic PS timeout changed
  1121. * @IEEE80211_CONF_CHANGE_POWER: the TX power changed
  1122. * @IEEE80211_CONF_CHANGE_CHANNEL: the channel/channel_type changed
  1123. * @IEEE80211_CONF_CHANGE_RETRY_LIMITS: retry limits changed
  1124. * @IEEE80211_CONF_CHANGE_IDLE: Idle flag changed
  1125. * @IEEE80211_CONF_CHANGE_SMPS: Spatial multiplexing powersave mode changed
  1126. * Note that this is only valid if channel contexts are not used,
  1127. * otherwise each channel context has the number of chains listed.
  1128. */
  1129. enum ieee80211_conf_changed {
  1130. IEEE80211_CONF_CHANGE_SMPS = BIT(1),
  1131. IEEE80211_CONF_CHANGE_LISTEN_INTERVAL = BIT(2),
  1132. IEEE80211_CONF_CHANGE_MONITOR = BIT(3),
  1133. IEEE80211_CONF_CHANGE_PS = BIT(4),
  1134. IEEE80211_CONF_CHANGE_POWER = BIT(5),
  1135. IEEE80211_CONF_CHANGE_CHANNEL = BIT(6),
  1136. IEEE80211_CONF_CHANGE_RETRY_LIMITS = BIT(7),
  1137. IEEE80211_CONF_CHANGE_IDLE = BIT(8),
  1138. };
  1139. /**
  1140. * enum ieee80211_smps_mode - spatial multiplexing power save mode
  1141. *
  1142. * @IEEE80211_SMPS_AUTOMATIC: automatic
  1143. * @IEEE80211_SMPS_OFF: off
  1144. * @IEEE80211_SMPS_STATIC: static
  1145. * @IEEE80211_SMPS_DYNAMIC: dynamic
  1146. * @IEEE80211_SMPS_NUM_MODES: internal, don't use
  1147. */
  1148. enum ieee80211_smps_mode {
  1149. IEEE80211_SMPS_AUTOMATIC,
  1150. IEEE80211_SMPS_OFF,
  1151. IEEE80211_SMPS_STATIC,
  1152. IEEE80211_SMPS_DYNAMIC,
  1153. /* keep last */
  1154. IEEE80211_SMPS_NUM_MODES,
  1155. };
  1156. /**
  1157. * struct ieee80211_conf - configuration of the device
  1158. *
  1159. * This struct indicates how the driver shall configure the hardware.
  1160. *
  1161. * @flags: configuration flags defined above
  1162. *
  1163. * @listen_interval: listen interval in units of beacon interval
  1164. * @max_sleep_period: the maximum number of beacon intervals to sleep for
  1165. * before checking the beacon for a TIM bit (managed mode only); this
  1166. * value will be only achievable between DTIM frames, the hardware
  1167. * needs to check for the multicast traffic bit in DTIM beacons.
  1168. * This variable is valid only when the CONF_PS flag is set.
  1169. * @ps_dtim_period: The DTIM period of the AP we're connected to, for use
  1170. * in power saving. Power saving will not be enabled until a beacon
  1171. * has been received and the DTIM period is known.
  1172. * @dynamic_ps_timeout: The dynamic powersave timeout (in ms), see the
  1173. * powersave documentation below. This variable is valid only when
  1174. * the CONF_PS flag is set.
  1175. *
  1176. * @power_level: requested transmit power (in dBm), backward compatibility
  1177. * value only that is set to the minimum of all interfaces
  1178. *
  1179. * @chandef: the channel definition to tune to
  1180. * @radar_enabled: whether radar detection is enabled
  1181. *
  1182. * @long_frame_max_tx_count: Maximum number of transmissions for a "long" frame
  1183. * (a frame not RTS protected), called "dot11LongRetryLimit" in 802.11,
  1184. * but actually means the number of transmissions not the number of retries
  1185. * @short_frame_max_tx_count: Maximum number of transmissions for a "short"
  1186. * frame, called "dot11ShortRetryLimit" in 802.11, but actually means the
  1187. * number of transmissions not the number of retries
  1188. *
  1189. * @smps_mode: spatial multiplexing powersave mode; note that
  1190. * %IEEE80211_SMPS_STATIC is used when the device is not
  1191. * configured for an HT channel.
  1192. * Note that this is only valid if channel contexts are not used,
  1193. * otherwise each channel context has the number of chains listed.
  1194. */
  1195. struct ieee80211_conf {
  1196. u32 flags;
  1197. int power_level, dynamic_ps_timeout;
  1198. int max_sleep_period;
  1199. u16 listen_interval;
  1200. u8 ps_dtim_period;
  1201. u8 long_frame_max_tx_count, short_frame_max_tx_count;
  1202. struct cfg80211_chan_def chandef;
  1203. bool radar_enabled;
  1204. enum ieee80211_smps_mode smps_mode;
  1205. };
  1206. /**
  1207. * struct ieee80211_channel_switch - holds the channel switch data
  1208. *
  1209. * The information provided in this structure is required for channel switch
  1210. * operation.
  1211. *
  1212. * @timestamp: value in microseconds of the 64-bit Time Synchronization
  1213. * Function (TSF) timer when the frame containing the channel switch
  1214. * announcement was received. This is simply the rx.mactime parameter
  1215. * the driver passed into mac80211.
  1216. * @device_timestamp: arbitrary timestamp for the device, this is the
  1217. * rx.device_timestamp parameter the driver passed to mac80211.
  1218. * @block_tx: Indicates whether transmission must be blocked before the
  1219. * scheduled channel switch, as indicated by the AP.
  1220. * @chandef: the new channel to switch to
  1221. * @count: the number of TBTT's until the channel switch event
  1222. */
  1223. struct ieee80211_channel_switch {
  1224. u64 timestamp;
  1225. u32 device_timestamp;
  1226. bool block_tx;
  1227. struct cfg80211_chan_def chandef;
  1228. u8 count;
  1229. };
  1230. /**
  1231. * enum ieee80211_vif_flags - virtual interface flags
  1232. *
  1233. * @IEEE80211_VIF_BEACON_FILTER: the device performs beacon filtering
  1234. * on this virtual interface to avoid unnecessary CPU wakeups
  1235. * @IEEE80211_VIF_SUPPORTS_CQM_RSSI: the device can do connection quality
  1236. * monitoring on this virtual interface -- i.e. it can monitor
  1237. * connection quality related parameters, such as the RSSI level and
  1238. * provide notifications if configured trigger levels are reached.
  1239. * @IEEE80211_VIF_SUPPORTS_UAPSD: The device can do U-APSD for this
  1240. * interface. This flag should be set during interface addition,
  1241. * but may be set/cleared as late as authentication to an AP. It is
  1242. * only valid for managed/station mode interfaces.
  1243. */
  1244. enum ieee80211_vif_flags {
  1245. IEEE80211_VIF_BEACON_FILTER = BIT(0),
  1246. IEEE80211_VIF_SUPPORTS_CQM_RSSI = BIT(1),
  1247. IEEE80211_VIF_SUPPORTS_UAPSD = BIT(2),
  1248. };
  1249. /**
  1250. * struct ieee80211_vif - per-interface data
  1251. *
  1252. * Data in this structure is continually present for driver
  1253. * use during the life of a virtual interface.
  1254. *
  1255. * @type: type of this virtual interface
  1256. * @bss_conf: BSS configuration for this interface, either our own
  1257. * or the BSS we're associated to
  1258. * @addr: address of this interface
  1259. * @p2p: indicates whether this AP or STA interface is a p2p
  1260. * interface, i.e. a GO or p2p-sta respectively
  1261. * @csa_active: marks whether a channel switch is going on. Internally it is
  1262. * write-protected by sdata_lock and local->mtx so holding either is fine
  1263. * for read access.
  1264. * @driver_flags: flags/capabilities the driver has for this interface,
  1265. * these need to be set (or cleared) when the interface is added
  1266. * or, if supported by the driver, the interface type is changed
  1267. * at runtime, mac80211 will never touch this field
  1268. * @hw_queue: hardware queue for each AC
  1269. * @cab_queue: content-after-beacon (DTIM beacon really) queue, AP mode only
  1270. * @chanctx_conf: The channel context this interface is assigned to, or %NULL
  1271. * when it is not assigned. This pointer is RCU-protected due to the TX
  1272. * path needing to access it; even though the netdev carrier will always
  1273. * be off when it is %NULL there can still be races and packets could be
  1274. * processed after it switches back to %NULL.
  1275. * @debugfs_dir: debugfs dentry, can be used by drivers to create own per
  1276. * interface debug files. Note that it will be NULL for the virtual
  1277. * monitor interface (if that is requested.)
  1278. * @drv_priv: data area for driver use, will always be aligned to
  1279. * sizeof(void *).
  1280. * @txq: the multicast data TX queue (if driver uses the TXQ abstraction)
  1281. */
  1282. struct ieee80211_vif {
  1283. enum nl80211_iftype type;
  1284. struct ieee80211_bss_conf bss_conf;
  1285. u8 addr[ETH_ALEN];
  1286. bool p2p;
  1287. bool csa_active;
  1288. u8 cab_queue;
  1289. u8 hw_queue[IEEE80211_NUM_ACS];
  1290. struct ieee80211_txq *txq;
  1291. struct ieee80211_chanctx_conf __rcu *chanctx_conf;
  1292. u32 driver_flags;
  1293. #ifdef CONFIG_MAC80211_DEBUGFS
  1294. struct dentry *debugfs_dir;
  1295. #endif
  1296. /* must be last */
  1297. u8 drv_priv[0] __aligned(sizeof(void *));
  1298. };
  1299. static inline bool ieee80211_vif_is_mesh(struct ieee80211_vif *vif)
  1300. {
  1301. #ifdef CONFIG_MAC80211_MESH
  1302. return vif->type == NL80211_IFTYPE_MESH_POINT;
  1303. #endif
  1304. return false;
  1305. }
  1306. /**
  1307. * wdev_to_ieee80211_vif - return a vif struct from a wdev
  1308. * @wdev: the wdev to get the vif for
  1309. *
  1310. * This can be used by mac80211 drivers with direct cfg80211 APIs
  1311. * (like the vendor commands) that get a wdev.
  1312. *
  1313. * Note that this function may return %NULL if the given wdev isn't
  1314. * associated with a vif that the driver knows about (e.g. monitor
  1315. * or AP_VLAN interfaces.)
  1316. */
  1317. struct ieee80211_vif *wdev_to_ieee80211_vif(struct wireless_dev *wdev);
  1318. /**
  1319. * ieee80211_vif_to_wdev - return a wdev struct from a vif
  1320. * @vif: the vif to get the wdev for
  1321. *
  1322. * This can be used by mac80211 drivers with direct cfg80211 APIs
  1323. * (like the vendor commands) that needs to get the wdev for a vif.
  1324. *
  1325. * Note that this function may return %NULL if the given wdev isn't
  1326. * associated with a vif that the driver knows about (e.g. monitor
  1327. * or AP_VLAN interfaces.)
  1328. */
  1329. struct wireless_dev *ieee80211_vif_to_wdev(struct ieee80211_vif *vif);
  1330. /**
  1331. * enum ieee80211_key_flags - key flags
  1332. *
  1333. * These flags are used for communication about keys between the driver
  1334. * and mac80211, with the @flags parameter of &struct ieee80211_key_conf.
  1335. *
  1336. * @IEEE80211_KEY_FLAG_GENERATE_IV: This flag should be set by the
  1337. * driver to indicate that it requires IV generation for this
  1338. * particular key. Setting this flag does not necessarily mean that SKBs
  1339. * will have sufficient tailroom for ICV or MIC.
  1340. * @IEEE80211_KEY_FLAG_GENERATE_MMIC: This flag should be set by
  1341. * the driver for a TKIP key if it requires Michael MIC
  1342. * generation in software.
  1343. * @IEEE80211_KEY_FLAG_PAIRWISE: Set by mac80211, this flag indicates
  1344. * that the key is pairwise rather then a shared key.
  1345. * @IEEE80211_KEY_FLAG_SW_MGMT_TX: This flag should be set by the driver for a
  1346. * CCMP/GCMP key if it requires CCMP/GCMP encryption of management frames
  1347. * (MFP) to be done in software.
  1348. * @IEEE80211_KEY_FLAG_PUT_IV_SPACE: This flag should be set by the driver
  1349. * if space should be prepared for the IV, but the IV
  1350. * itself should not be generated. Do not set together with
  1351. * @IEEE80211_KEY_FLAG_GENERATE_IV on the same key. Setting this flag does
  1352. * not necessarily mean that SKBs will have sufficient tailroom for ICV or
  1353. * MIC.
  1354. * @IEEE80211_KEY_FLAG_RX_MGMT: This key will be used to decrypt received
  1355. * management frames. The flag can help drivers that have a hardware
  1356. * crypto implementation that doesn't deal with management frames
  1357. * properly by allowing them to not upload the keys to hardware and
  1358. * fall back to software crypto. Note that this flag deals only with
  1359. * RX, if your crypto engine can't deal with TX you can also set the
  1360. * %IEEE80211_KEY_FLAG_SW_MGMT_TX flag to encrypt such frames in SW.
  1361. * @IEEE80211_KEY_FLAG_GENERATE_IV_MGMT: This flag should be set by the
  1362. * driver for a CCMP/GCMP key to indicate that is requires IV generation
  1363. * only for managment frames (MFP).
  1364. * @IEEE80211_KEY_FLAG_RESERVE_TAILROOM: This flag should be set by the
  1365. * driver for a key to indicate that sufficient tailroom must always
  1366. * be reserved for ICV or MIC, even when HW encryption is enabled.
  1367. */
  1368. enum ieee80211_key_flags {
  1369. IEEE80211_KEY_FLAG_GENERATE_IV_MGMT = BIT(0),
  1370. IEEE80211_KEY_FLAG_GENERATE_IV = BIT(1),
  1371. IEEE80211_KEY_FLAG_GENERATE_MMIC = BIT(2),
  1372. IEEE80211_KEY_FLAG_PAIRWISE = BIT(3),
  1373. IEEE80211_KEY_FLAG_SW_MGMT_TX = BIT(4),
  1374. IEEE80211_KEY_FLAG_PUT_IV_SPACE = BIT(5),
  1375. IEEE80211_KEY_FLAG_RX_MGMT = BIT(6),
  1376. IEEE80211_KEY_FLAG_RESERVE_TAILROOM = BIT(7),
  1377. };
  1378. /**
  1379. * struct ieee80211_key_conf - key information
  1380. *
  1381. * This key information is given by mac80211 to the driver by
  1382. * the set_key() callback in &struct ieee80211_ops.
  1383. *
  1384. * @hw_key_idx: To be set by the driver, this is the key index the driver
  1385. * wants to be given when a frame is transmitted and needs to be
  1386. * encrypted in hardware.
  1387. * @cipher: The key's cipher suite selector.
  1388. * @flags: key flags, see &enum ieee80211_key_flags.
  1389. * @keyidx: the key index (0-3)
  1390. * @keylen: key material length
  1391. * @key: key material. For ALG_TKIP the key is encoded as a 256-bit (32 byte)
  1392. * data block:
  1393. * - Temporal Encryption Key (128 bits)
  1394. * - Temporal Authenticator Tx MIC Key (64 bits)
  1395. * - Temporal Authenticator Rx MIC Key (64 bits)
  1396. * @icv_len: The ICV length for this key type
  1397. * @iv_len: The IV length for this key type
  1398. */
  1399. struct ieee80211_key_conf {
  1400. u32 cipher;
  1401. u8 icv_len;
  1402. u8 iv_len;
  1403. u8 hw_key_idx;
  1404. u8 flags;
  1405. s8 keyidx;
  1406. u8 keylen;
  1407. u8 key[0];
  1408. };
  1409. /**
  1410. * struct ieee80211_cipher_scheme - cipher scheme
  1411. *
  1412. * This structure contains a cipher scheme information defining
  1413. * the secure packet crypto handling.
  1414. *
  1415. * @cipher: a cipher suite selector
  1416. * @iftype: a cipher iftype bit mask indicating an allowed cipher usage
  1417. * @hdr_len: a length of a security header used the cipher
  1418. * @pn_len: a length of a packet number in the security header
  1419. * @pn_off: an offset of pn from the beginning of the security header
  1420. * @key_idx_off: an offset of key index byte in the security header
  1421. * @key_idx_mask: a bit mask of key_idx bits
  1422. * @key_idx_shift: a bit shift needed to get key_idx
  1423. * key_idx value calculation:
  1424. * (sec_header_base[key_idx_off] & key_idx_mask) >> key_idx_shift
  1425. * @mic_len: a mic length in bytes
  1426. */
  1427. struct ieee80211_cipher_scheme {
  1428. u32 cipher;
  1429. u16 iftype;
  1430. u8 hdr_len;
  1431. u8 pn_len;
  1432. u8 pn_off;
  1433. u8 key_idx_off;
  1434. u8 key_idx_mask;
  1435. u8 key_idx_shift;
  1436. u8 mic_len;
  1437. };
  1438. /**
  1439. * enum set_key_cmd - key command
  1440. *
  1441. * Used with the set_key() callback in &struct ieee80211_ops, this
  1442. * indicates whether a key is being removed or added.
  1443. *
  1444. * @SET_KEY: a key is set
  1445. * @DISABLE_KEY: a key must be disabled
  1446. */
  1447. enum set_key_cmd {
  1448. SET_KEY, DISABLE_KEY,
  1449. };
  1450. /**
  1451. * enum ieee80211_sta_state - station state
  1452. *
  1453. * @IEEE80211_STA_NOTEXIST: station doesn't exist at all,
  1454. * this is a special state for add/remove transitions
  1455. * @IEEE80211_STA_NONE: station exists without special state
  1456. * @IEEE80211_STA_AUTH: station is authenticated
  1457. * @IEEE80211_STA_ASSOC: station is associated
  1458. * @IEEE80211_STA_AUTHORIZED: station is authorized (802.1X)
  1459. */
  1460. enum ieee80211_sta_state {
  1461. /* NOTE: These need to be ordered correctly! */
  1462. IEEE80211_STA_NOTEXIST,
  1463. IEEE80211_STA_NONE,
  1464. IEEE80211_STA_AUTH,
  1465. IEEE80211_STA_ASSOC,
  1466. IEEE80211_STA_AUTHORIZED,
  1467. };
  1468. /**
  1469. * enum ieee80211_sta_rx_bandwidth - station RX bandwidth
  1470. * @IEEE80211_STA_RX_BW_20: station can only receive 20 MHz
  1471. * @IEEE80211_STA_RX_BW_40: station can receive up to 40 MHz
  1472. * @IEEE80211_STA_RX_BW_80: station can receive up to 80 MHz
  1473. * @IEEE80211_STA_RX_BW_160: station can receive up to 160 MHz
  1474. * (including 80+80 MHz)
  1475. *
  1476. * Implementation note: 20 must be zero to be initialized
  1477. * correctly, the values must be sorted.
  1478. */
  1479. enum ieee80211_sta_rx_bandwidth {
  1480. IEEE80211_STA_RX_BW_20 = 0,
  1481. IEEE80211_STA_RX_BW_40,
  1482. IEEE80211_STA_RX_BW_80,
  1483. IEEE80211_STA_RX_BW_160,
  1484. };
  1485. /**
  1486. * struct ieee80211_sta_rates - station rate selection table
  1487. *
  1488. * @rcu_head: RCU head used for freeing the table on update
  1489. * @rate: transmit rates/flags to be used by default.
  1490. * Overriding entries per-packet is possible by using cb tx control.
  1491. */
  1492. struct ieee80211_sta_rates {
  1493. struct rcu_head rcu_head;
  1494. struct {
  1495. s8 idx;
  1496. u8 count;
  1497. u8 count_cts;
  1498. u8 count_rts;
  1499. u16 flags;
  1500. } rate[IEEE80211_TX_RATE_TABLE_SIZE];
  1501. };
  1502. /**
  1503. * struct ieee80211_sta - station table entry
  1504. *
  1505. * A station table entry represents a station we are possibly
  1506. * communicating with. Since stations are RCU-managed in
  1507. * mac80211, any ieee80211_sta pointer you get access to must
  1508. * either be protected by rcu_read_lock() explicitly or implicitly,
  1509. * or you must take good care to not use such a pointer after a
  1510. * call to your sta_remove callback that removed it.
  1511. *
  1512. * @addr: MAC address
  1513. * @aid: AID we assigned to the station if we're an AP
  1514. * @supp_rates: Bitmap of supported rates (per band)
  1515. * @ht_cap: HT capabilities of this STA; restricted to our own capabilities
  1516. * @vht_cap: VHT capabilities of this STA; restricted to our own capabilities
  1517. * @wme: indicates whether the STA supports QoS/WME (if local devices does,
  1518. * otherwise always false)
  1519. * @drv_priv: data area for driver use, will always be aligned to
  1520. * sizeof(void *), size is determined in hw information.
  1521. * @uapsd_queues: bitmap of queues configured for uapsd. Only valid
  1522. * if wme is supported.
  1523. * @max_sp: max Service Period. Only valid if wme is supported.
  1524. * @bandwidth: current bandwidth the station can receive with
  1525. * @rx_nss: in HT/VHT, the maximum number of spatial streams the
  1526. * station can receive at the moment, changed by operating mode
  1527. * notifications and capabilities. The value is only valid after
  1528. * the station moves to associated state.
  1529. * @smps_mode: current SMPS mode (off, static or dynamic)
  1530. * @rates: rate control selection table
  1531. * @tdls: indicates whether the STA is a TDLS peer
  1532. * @tdls_initiator: indicates the STA is an initiator of the TDLS link. Only
  1533. * valid if the STA is a TDLS peer in the first place.
  1534. * @mfp: indicates whether the STA uses management frame protection or not.
  1535. * @txq: per-TID data TX queues (if driver uses the TXQ abstraction)
  1536. */
  1537. struct ieee80211_sta {
  1538. u32 supp_rates[IEEE80211_NUM_BANDS];
  1539. u8 addr[ETH_ALEN];
  1540. u16 aid;
  1541. struct ieee80211_sta_ht_cap ht_cap;
  1542. struct ieee80211_sta_vht_cap vht_cap;
  1543. bool wme;
  1544. u8 uapsd_queues;
  1545. u8 max_sp;
  1546. u8 rx_nss;
  1547. enum ieee80211_sta_rx_bandwidth bandwidth;
  1548. enum ieee80211_smps_mode smps_mode;
  1549. struct ieee80211_sta_rates __rcu *rates;
  1550. bool tdls;
  1551. bool tdls_initiator;
  1552. bool mfp;
  1553. struct ieee80211_txq *txq[IEEE80211_NUM_TIDS];
  1554. /* must be last */
  1555. u8 drv_priv[0] __aligned(sizeof(void *));
  1556. };
  1557. /**
  1558. * enum sta_notify_cmd - sta notify command
  1559. *
  1560. * Used with the sta_notify() callback in &struct ieee80211_ops, this
  1561. * indicates if an associated station made a power state transition.
  1562. *
  1563. * @STA_NOTIFY_SLEEP: a station is now sleeping
  1564. * @STA_NOTIFY_AWAKE: a sleeping station woke up
  1565. */
  1566. enum sta_notify_cmd {
  1567. STA_NOTIFY_SLEEP, STA_NOTIFY_AWAKE,
  1568. };
  1569. /**
  1570. * struct ieee80211_tx_control - TX control data
  1571. *
  1572. * @sta: station table entry, this sta pointer may be NULL and
  1573. * it is not allowed to copy the pointer, due to RCU.
  1574. */
  1575. struct ieee80211_tx_control {
  1576. struct ieee80211_sta *sta;
  1577. };
  1578. /**
  1579. * struct ieee80211_txq - Software intermediate tx queue
  1580. *
  1581. * @vif: &struct ieee80211_vif pointer from the add_interface callback.
  1582. * @sta: station table entry, %NULL for per-vif queue
  1583. * @tid: the TID for this queue (unused for per-vif queue)
  1584. * @ac: the AC for this queue
  1585. *
  1586. * The driver can obtain packets from this queue by calling
  1587. * ieee80211_tx_dequeue().
  1588. */
  1589. struct ieee80211_txq {
  1590. struct ieee80211_vif *vif;
  1591. struct ieee80211_sta *sta;
  1592. u8 tid;
  1593. u8 ac;
  1594. /* must be last */
  1595. u8 drv_priv[0] __aligned(sizeof(void *));
  1596. };
  1597. /**
  1598. * enum ieee80211_hw_flags - hardware flags
  1599. *
  1600. * These flags are used to indicate hardware capabilities to
  1601. * the stack. Generally, flags here should have their meaning
  1602. * done in a way that the simplest hardware doesn't need setting
  1603. * any particular flags. There are some exceptions to this rule,
  1604. * however, so you are advised to review these flags carefully.
  1605. *
  1606. * @IEEE80211_HW_HAS_RATE_CONTROL:
  1607. * The hardware or firmware includes rate control, and cannot be
  1608. * controlled by the stack. As such, no rate control algorithm
  1609. * should be instantiated, and the TX rate reported to userspace
  1610. * will be taken from the TX status instead of the rate control
  1611. * algorithm.
  1612. * Note that this requires that the driver implement a number of
  1613. * callbacks so it has the correct information, it needs to have
  1614. * the @set_rts_threshold callback and must look at the BSS config
  1615. * @use_cts_prot for G/N protection, @use_short_slot for slot
  1616. * timing in 2.4 GHz and @use_short_preamble for preambles for
  1617. * CCK frames.
  1618. *
  1619. * @IEEE80211_HW_RX_INCLUDES_FCS:
  1620. * Indicates that received frames passed to the stack include
  1621. * the FCS at the end.
  1622. *
  1623. * @IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING:
  1624. * Some wireless LAN chipsets buffer broadcast/multicast frames
  1625. * for power saving stations in the hardware/firmware and others
  1626. * rely on the host system for such buffering. This option is used
  1627. * to configure the IEEE 802.11 upper layer to buffer broadcast and
  1628. * multicast frames when there are power saving stations so that
  1629. * the driver can fetch them with ieee80211_get_buffered_bc().
  1630. *
  1631. * @IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE:
  1632. * Hardware is not capable of short slot operation on the 2.4 GHz band.
  1633. *
  1634. * @IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE:
  1635. * Hardware is not capable of receiving frames with short preamble on
  1636. * the 2.4 GHz band.
  1637. *
  1638. * @IEEE80211_HW_SIGNAL_UNSPEC:
  1639. * Hardware can provide signal values but we don't know its units. We
  1640. * expect values between 0 and @max_signal.
  1641. * If possible please provide dB or dBm instead.
  1642. *
  1643. * @IEEE80211_HW_SIGNAL_DBM:
  1644. * Hardware gives signal values in dBm, decibel difference from
  1645. * one milliwatt. This is the preferred method since it is standardized
  1646. * between different devices. @max_signal does not need to be set.
  1647. *
  1648. * @IEEE80211_HW_SPECTRUM_MGMT:
  1649. * Hardware supports spectrum management defined in 802.11h
  1650. * Measurement, Channel Switch, Quieting, TPC
  1651. *
  1652. * @IEEE80211_HW_AMPDU_AGGREGATION:
  1653. * Hardware supports 11n A-MPDU aggregation.
  1654. *
  1655. * @IEEE80211_HW_SUPPORTS_PS:
  1656. * Hardware has power save support (i.e. can go to sleep).
  1657. *
  1658. * @IEEE80211_HW_PS_NULLFUNC_STACK:
  1659. * Hardware requires nullfunc frame handling in stack, implies
  1660. * stack support for dynamic PS.
  1661. *
  1662. * @IEEE80211_HW_SUPPORTS_DYNAMIC_PS:
  1663. * Hardware has support for dynamic PS.
  1664. *
  1665. * @IEEE80211_HW_MFP_CAPABLE:
  1666. * Hardware supports management frame protection (MFP, IEEE 802.11w).
  1667. *
  1668. * @IEEE80211_HW_REPORTS_TX_ACK_STATUS:
  1669. * Hardware can provide ack status reports of Tx frames to
  1670. * the stack.
  1671. *
  1672. * @IEEE80211_HW_CONNECTION_MONITOR:
  1673. * The hardware performs its own connection monitoring, including
  1674. * periodic keep-alives to the AP and probing the AP on beacon loss.
  1675. *
  1676. * @IEEE80211_HW_NEED_DTIM_BEFORE_ASSOC:
  1677. * This device needs to get data from beacon before association (i.e.
  1678. * dtim_period).
  1679. *
  1680. * @IEEE80211_HW_SUPPORTS_PER_STA_GTK: The device's crypto engine supports
  1681. * per-station GTKs as used by IBSS RSN or during fast transition. If
  1682. * the device doesn't support per-station GTKs, but can be asked not
  1683. * to decrypt group addressed frames, then IBSS RSN support is still
  1684. * possible but software crypto will be used. Advertise the wiphy flag
  1685. * only in that case.
  1686. *
  1687. * @IEEE80211_HW_AP_LINK_PS: When operating in AP mode the device
  1688. * autonomously manages the PS status of connected stations. When
  1689. * this flag is set mac80211 will not trigger PS mode for connected
  1690. * stations based on the PM bit of incoming frames.
  1691. * Use ieee80211_start_ps()/ieee8021_end_ps() to manually configure
  1692. * the PS mode of connected stations.
  1693. *
  1694. * @IEEE80211_HW_TX_AMPDU_SETUP_IN_HW: The device handles TX A-MPDU session
  1695. * setup strictly in HW. mac80211 should not attempt to do this in
  1696. * software.
  1697. *
  1698. * @IEEE80211_HW_WANT_MONITOR_VIF: The driver would like to be informed of
  1699. * a virtual monitor interface when monitor interfaces are the only
  1700. * active interfaces.
  1701. *
  1702. * @IEEE80211_HW_NO_AUTO_VIF: The driver would like for no wlanX to
  1703. * be created. It is expected user-space will create vifs as
  1704. * desired (and thus have them named as desired).
  1705. *
  1706. * @IEEE80211_HW_SW_CRYPTO_CONTROL: The driver wants to control which of the
  1707. * crypto algorithms can be done in software - so don't automatically
  1708. * try to fall back to it if hardware crypto fails, but do so only if
  1709. * the driver returns 1. This also forces the driver to advertise its
  1710. * supported cipher suites.
  1711. *
  1712. * @IEEE80211_HW_SUPPORT_FAST_XMIT: The driver/hardware supports fast-xmit,
  1713. * this currently requires only the ability to calculate the duration
  1714. * for frames.
  1715. *
  1716. * @IEEE80211_HW_QUEUE_CONTROL: The driver wants to control per-interface
  1717. * queue mapping in order to use different queues (not just one per AC)
  1718. * for different virtual interfaces. See the doc section on HW queue
  1719. * control for more details.
  1720. *
  1721. * @IEEE80211_HW_SUPPORTS_RC_TABLE: The driver supports using a rate
  1722. * selection table provided by the rate control algorithm.
  1723. *
  1724. * @IEEE80211_HW_P2P_DEV_ADDR_FOR_INTF: Use the P2P Device address for any
  1725. * P2P Interface. This will be honoured even if more than one interface
  1726. * is supported.
  1727. *
  1728. * @IEEE80211_HW_TIMING_BEACON_ONLY: Use sync timing from beacon frames
  1729. * only, to allow getting TBTT of a DTIM beacon.
  1730. *
  1731. * @IEEE80211_HW_SUPPORTS_HT_CCK_RATES: Hardware supports mixing HT/CCK rates
  1732. * and can cope with CCK rates in an aggregation session (e.g. by not
  1733. * using aggregation for such frames.)
  1734. *
  1735. * @IEEE80211_HW_CHANCTX_STA_CSA: Support 802.11h based channel-switch (CSA)
  1736. * for a single active channel while using channel contexts. When support
  1737. * is not enabled the default action is to disconnect when getting the
  1738. * CSA frame.
  1739. *
  1740. * @IEEE80211_HW_SUPPORTS_CLONED_SKBS: The driver will never modify the payload
  1741. * or tailroom of TX skbs without copying them first.
  1742. *
  1743. * @IEEE80211_SINGLE_HW_SCAN_ON_ALL_BANDS: The HW supports scanning on all bands
  1744. * in one command, mac80211 doesn't have to run separate scans per band.
  1745. */
  1746. enum ieee80211_hw_flags {
  1747. IEEE80211_HW_HAS_RATE_CONTROL = 1<<0,
  1748. IEEE80211_HW_RX_INCLUDES_FCS = 1<<1,
  1749. IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING = 1<<2,
  1750. IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE = 1<<3,
  1751. IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE = 1<<4,
  1752. IEEE80211_HW_SIGNAL_UNSPEC = 1<<5,
  1753. IEEE80211_HW_SIGNAL_DBM = 1<<6,
  1754. IEEE80211_HW_NEED_DTIM_BEFORE_ASSOC = 1<<7,
  1755. IEEE80211_HW_SPECTRUM_MGMT = 1<<8,
  1756. IEEE80211_HW_AMPDU_AGGREGATION = 1<<9,
  1757. IEEE80211_HW_SUPPORTS_PS = 1<<10,
  1758. IEEE80211_HW_PS_NULLFUNC_STACK = 1<<11,
  1759. IEEE80211_HW_SUPPORTS_DYNAMIC_PS = 1<<12,
  1760. IEEE80211_HW_MFP_CAPABLE = 1<<13,
  1761. IEEE80211_HW_WANT_MONITOR_VIF = 1<<14,
  1762. IEEE80211_HW_NO_AUTO_VIF = 1<<15,
  1763. IEEE80211_HW_SW_CRYPTO_CONTROL = 1<<16,
  1764. IEEE80211_HW_SUPPORT_FAST_XMIT = 1<<17,
  1765. IEEE80211_HW_REPORTS_TX_ACK_STATUS = 1<<18,
  1766. IEEE80211_HW_CONNECTION_MONITOR = 1<<19,
  1767. IEEE80211_HW_QUEUE_CONTROL = 1<<20,
  1768. IEEE80211_HW_SUPPORTS_PER_STA_GTK = 1<<21,
  1769. IEEE80211_HW_AP_LINK_PS = 1<<22,
  1770. IEEE80211_HW_TX_AMPDU_SETUP_IN_HW = 1<<23,
  1771. IEEE80211_HW_SUPPORTS_RC_TABLE = 1<<24,
  1772. IEEE80211_HW_P2P_DEV_ADDR_FOR_INTF = 1<<25,
  1773. IEEE80211_HW_TIMING_BEACON_ONLY = 1<<26,
  1774. IEEE80211_HW_SUPPORTS_HT_CCK_RATES = 1<<27,
  1775. IEEE80211_HW_CHANCTX_STA_CSA = 1<<28,
  1776. IEEE80211_HW_SUPPORTS_CLONED_SKBS = 1<<29,
  1777. IEEE80211_SINGLE_HW_SCAN_ON_ALL_BANDS = 1<<30,
  1778. };
  1779. /**
  1780. * struct ieee80211_hw - hardware information and state
  1781. *
  1782. * This structure contains the configuration and hardware
  1783. * information for an 802.11 PHY.
  1784. *
  1785. * @wiphy: This points to the &struct wiphy allocated for this
  1786. * 802.11 PHY. You must fill in the @perm_addr and @dev
  1787. * members of this structure using SET_IEEE80211_DEV()
  1788. * and SET_IEEE80211_PERM_ADDR(). Additionally, all supported
  1789. * bands (with channels, bitrates) are registered here.
  1790. *
  1791. * @conf: &struct ieee80211_conf, device configuration, don't use.
  1792. *
  1793. * @priv: pointer to private area that was allocated for driver use
  1794. * along with this structure.
  1795. *
  1796. * @flags: hardware flags, see &enum ieee80211_hw_flags.
  1797. *
  1798. * @extra_tx_headroom: headroom to reserve in each transmit skb
  1799. * for use by the driver (e.g. for transmit headers.)
  1800. *
  1801. * @extra_beacon_tailroom: tailroom to reserve in each beacon tx skb.
  1802. * Can be used by drivers to add extra IEs.
  1803. *
  1804. * @max_signal: Maximum value for signal (rssi) in RX information, used
  1805. * only when @IEEE80211_HW_SIGNAL_UNSPEC or @IEEE80211_HW_SIGNAL_DB
  1806. *
  1807. * @max_listen_interval: max listen interval in units of beacon interval
  1808. * that HW supports
  1809. *
  1810. * @queues: number of available hardware transmit queues for
  1811. * data packets. WMM/QoS requires at least four, these
  1812. * queues need to have configurable access parameters.
  1813. *
  1814. * @rate_control_algorithm: rate control algorithm for this hardware.
  1815. * If unset (NULL), the default algorithm will be used. Must be
  1816. * set before calling ieee80211_register_hw().
  1817. *
  1818. * @vif_data_size: size (in bytes) of the drv_priv data area
  1819. * within &struct ieee80211_vif.
  1820. * @sta_data_size: size (in bytes) of the drv_priv data area
  1821. * within &struct ieee80211_sta.
  1822. * @chanctx_data_size: size (in bytes) of the drv_priv data area
  1823. * within &struct ieee80211_chanctx_conf.
  1824. * @txq_data_size: size (in bytes) of the drv_priv data area
  1825. * within @struct ieee80211_txq.
  1826. *
  1827. * @max_rates: maximum number of alternate rate retry stages the hw
  1828. * can handle.
  1829. * @max_report_rates: maximum number of alternate rate retry stages
  1830. * the hw can report back.
  1831. * @max_rate_tries: maximum number of tries for each stage
  1832. *
  1833. * @max_rx_aggregation_subframes: maximum buffer size (number of
  1834. * sub-frames) to be used for A-MPDU block ack receiver
  1835. * aggregation.
  1836. * This is only relevant if the device has restrictions on the
  1837. * number of subframes, if it relies on mac80211 to do reordering
  1838. * it shouldn't be set.
  1839. *
  1840. * @max_tx_aggregation_subframes: maximum number of subframes in an
  1841. * aggregate an HT driver will transmit, used by the peer as a
  1842. * hint to size its reorder buffer.
  1843. *
  1844. * @offchannel_tx_hw_queue: HW queue ID to use for offchannel TX
  1845. * (if %IEEE80211_HW_QUEUE_CONTROL is set)
  1846. *
  1847. * @radiotap_mcs_details: lists which MCS information can the HW
  1848. * reports, by default it is set to _MCS, _GI and _BW but doesn't
  1849. * include _FMT. Use %IEEE80211_RADIOTAP_MCS_HAVE_* values, only
  1850. * adding _BW is supported today.
  1851. *
  1852. * @radiotap_vht_details: lists which VHT MCS information the HW reports,
  1853. * the default is _GI | _BANDWIDTH.
  1854. * Use the %IEEE80211_RADIOTAP_VHT_KNOWN_* values.
  1855. *
  1856. * @netdev_features: netdev features to be set in each netdev created
  1857. * from this HW. Note that not all features are usable with mac80211,
  1858. * other features will be rejected during HW registration.
  1859. *
  1860. * @uapsd_queues: This bitmap is included in (re)association frame to indicate
  1861. * for each access category if it is uAPSD trigger-enabled and delivery-
  1862. * enabled. Use IEEE80211_WMM_IE_STA_QOSINFO_AC_* to set this bitmap.
  1863. * Each bit corresponds to different AC. Value '1' in specific bit means
  1864. * that corresponding AC is both trigger- and delivery-enabled. '0' means
  1865. * neither enabled.
  1866. *
  1867. * @uapsd_max_sp_len: maximum number of total buffered frames the WMM AP may
  1868. * deliver to a WMM STA during any Service Period triggered by the WMM STA.
  1869. * Use IEEE80211_WMM_IE_STA_QOSINFO_SP_* for correct values.
  1870. *
  1871. * @n_cipher_schemes: a size of an array of cipher schemes definitions.
  1872. * @cipher_schemes: a pointer to an array of cipher scheme definitions
  1873. * supported by HW.
  1874. *
  1875. * @txq_ac_max_pending: maximum number of frames per AC pending in all txq
  1876. * entries for a vif.
  1877. */
  1878. struct ieee80211_hw {
  1879. struct ieee80211_conf conf;
  1880. struct wiphy *wiphy;
  1881. const char *rate_control_algorithm;
  1882. void *priv;
  1883. u32 flags;
  1884. unsigned int extra_tx_headroom;
  1885. unsigned int extra_beacon_tailroom;
  1886. int vif_data_size;
  1887. int sta_data_size;
  1888. int chanctx_data_size;
  1889. int txq_data_size;
  1890. u16 queues;
  1891. u16 max_listen_interval;
  1892. s8 max_signal;
  1893. u8 max_rates;
  1894. u8 max_report_rates;
  1895. u8 max_rate_tries;
  1896. u8 max_rx_aggregation_subframes;
  1897. u8 max_tx_aggregation_subframes;
  1898. u8 offchannel_tx_hw_queue;
  1899. u8 radiotap_mcs_details;
  1900. u16 radiotap_vht_details;
  1901. netdev_features_t netdev_features;
  1902. u8 uapsd_queues;
  1903. u8 uapsd_max_sp_len;
  1904. u8 n_cipher_schemes;
  1905. const struct ieee80211_cipher_scheme *cipher_schemes;
  1906. int txq_ac_max_pending;
  1907. };
  1908. /**
  1909. * struct ieee80211_scan_request - hw scan request
  1910. *
  1911. * @ies: pointers different parts of IEs (in req.ie)
  1912. * @req: cfg80211 request.
  1913. */
  1914. struct ieee80211_scan_request {
  1915. struct ieee80211_scan_ies ies;
  1916. /* Keep last */
  1917. struct cfg80211_scan_request req;
  1918. };
  1919. /**
  1920. * struct ieee80211_tdls_ch_sw_params - TDLS channel switch parameters
  1921. *
  1922. * @sta: peer this TDLS channel-switch request/response came from
  1923. * @chandef: channel referenced in a TDLS channel-switch request
  1924. * @action_code: see &enum ieee80211_tdls_actioncode
  1925. * @status: channel-switch response status
  1926. * @timestamp: time at which the frame was received
  1927. * @switch_time: switch-timing parameter received in the frame
  1928. * @switch_timeout: switch-timing parameter received in the frame
  1929. * @tmpl_skb: TDLS switch-channel response template
  1930. * @ch_sw_tm_ie: offset of the channel-switch timing IE inside @tmpl_skb
  1931. */
  1932. struct ieee80211_tdls_ch_sw_params {
  1933. struct ieee80211_sta *sta;
  1934. struct cfg80211_chan_def *chandef;
  1935. u8 action_code;
  1936. u32 status;
  1937. u32 timestamp;
  1938. u16 switch_time;
  1939. u16 switch_timeout;
  1940. struct sk_buff *tmpl_skb;
  1941. u32 ch_sw_tm_ie;
  1942. };
  1943. /**
  1944. * wiphy_to_ieee80211_hw - return a mac80211 driver hw struct from a wiphy
  1945. *
  1946. * @wiphy: the &struct wiphy which we want to query
  1947. *
  1948. * mac80211 drivers can use this to get to their respective
  1949. * &struct ieee80211_hw. Drivers wishing to get to their own private
  1950. * structure can then access it via hw->priv. Note that mac802111 drivers should
  1951. * not use wiphy_priv() to try to get their private driver structure as this
  1952. * is already used internally by mac80211.
  1953. *
  1954. * Return: The mac80211 driver hw struct of @wiphy.
  1955. */
  1956. struct ieee80211_hw *wiphy_to_ieee80211_hw(struct wiphy *wiphy);
  1957. /**
  1958. * SET_IEEE80211_DEV - set device for 802.11 hardware
  1959. *
  1960. * @hw: the &struct ieee80211_hw to set the device for
  1961. * @dev: the &struct device of this 802.11 device
  1962. */
  1963. static inline void SET_IEEE80211_DEV(struct ieee80211_hw *hw, struct device *dev)
  1964. {
  1965. set_wiphy_dev(hw->wiphy, dev);
  1966. }
  1967. /**
  1968. * SET_IEEE80211_PERM_ADDR - set the permanent MAC address for 802.11 hardware
  1969. *
  1970. * @hw: the &struct ieee80211_hw to set the MAC address for
  1971. * @addr: the address to set
  1972. */
  1973. static inline void SET_IEEE80211_PERM_ADDR(struct ieee80211_hw *hw, u8 *addr)
  1974. {
  1975. memcpy(hw->wiphy->perm_addr, addr, ETH_ALEN);
  1976. }
  1977. static inline struct ieee80211_rate *
  1978. ieee80211_get_tx_rate(const struct ieee80211_hw *hw,
  1979. const struct ieee80211_tx_info *c)
  1980. {
  1981. if (WARN_ON_ONCE(c->control.rates[0].idx < 0))
  1982. return NULL;
  1983. return &hw->wiphy->bands[c->band]->bitrates[c->control.rates[0].idx];
  1984. }
  1985. static inline struct ieee80211_rate *
  1986. ieee80211_get_rts_cts_rate(const struct ieee80211_hw *hw,
  1987. const struct ieee80211_tx_info *c)
  1988. {
  1989. if (c->control.rts_cts_rate_idx < 0)
  1990. return NULL;
  1991. return &hw->wiphy->bands[c->band]->bitrates[c->control.rts_cts_rate_idx];
  1992. }
  1993. static inline struct ieee80211_rate *
  1994. ieee80211_get_alt_retry_rate(const struct ieee80211_hw *hw,
  1995. const struct ieee80211_tx_info *c, int idx)
  1996. {
  1997. if (c->control.rates[idx + 1].idx < 0)
  1998. return NULL;
  1999. return &hw->wiphy->bands[c->band]->bitrates[c->control.rates[idx + 1].idx];
  2000. }
  2001. /**
  2002. * ieee80211_free_txskb - free TX skb
  2003. * @hw: the hardware
  2004. * @skb: the skb
  2005. *
  2006. * Free a transmit skb. Use this funtion when some failure
  2007. * to transmit happened and thus status cannot be reported.
  2008. */
  2009. void ieee80211_free_txskb(struct ieee80211_hw *hw, struct sk_buff *skb);
  2010. /**
  2011. * DOC: Hardware crypto acceleration
  2012. *
  2013. * mac80211 is capable of taking advantage of many hardware
  2014. * acceleration designs for encryption and decryption operations.
  2015. *
  2016. * The set_key() callback in the &struct ieee80211_ops for a given
  2017. * device is called to enable hardware acceleration of encryption and
  2018. * decryption. The callback takes a @sta parameter that will be NULL
  2019. * for default keys or keys used for transmission only, or point to
  2020. * the station information for the peer for individual keys.
  2021. * Multiple transmission keys with the same key index may be used when
  2022. * VLANs are configured for an access point.
  2023. *
  2024. * When transmitting, the TX control data will use the @hw_key_idx
  2025. * selected by the driver by modifying the &struct ieee80211_key_conf
  2026. * pointed to by the @key parameter to the set_key() function.
  2027. *
  2028. * The set_key() call for the %SET_KEY command should return 0 if
  2029. * the key is now in use, -%EOPNOTSUPP or -%ENOSPC if it couldn't be
  2030. * added; if you return 0 then hw_key_idx must be assigned to the
  2031. * hardware key index, you are free to use the full u8 range.
  2032. *
  2033. * Note that in the case that the @IEEE80211_HW_SW_CRYPTO_CONTROL flag is
  2034. * set, mac80211 will not automatically fall back to software crypto if
  2035. * enabling hardware crypto failed. The set_key() call may also return the
  2036. * value 1 to permit this specific key/algorithm to be done in software.
  2037. *
  2038. * When the cmd is %DISABLE_KEY then it must succeed.
  2039. *
  2040. * Note that it is permissible to not decrypt a frame even if a key
  2041. * for it has been uploaded to hardware, the stack will not make any
  2042. * decision based on whether a key has been uploaded or not but rather
  2043. * based on the receive flags.
  2044. *
  2045. * The &struct ieee80211_key_conf structure pointed to by the @key
  2046. * parameter is guaranteed to be valid until another call to set_key()
  2047. * removes it, but it can only be used as a cookie to differentiate
  2048. * keys.
  2049. *
  2050. * In TKIP some HW need to be provided a phase 1 key, for RX decryption
  2051. * acceleration (i.e. iwlwifi). Those drivers should provide update_tkip_key
  2052. * handler.
  2053. * The update_tkip_key() call updates the driver with the new phase 1 key.
  2054. * This happens every time the iv16 wraps around (every 65536 packets). The
  2055. * set_key() call will happen only once for each key (unless the AP did
  2056. * rekeying), it will not include a valid phase 1 key. The valid phase 1 key is
  2057. * provided by update_tkip_key only. The trigger that makes mac80211 call this
  2058. * handler is software decryption with wrap around of iv16.
  2059. *
  2060. * The set_default_unicast_key() call updates the default WEP key index
  2061. * configured to the hardware for WEP encryption type. This is required
  2062. * for devices that support offload of data packets (e.g. ARP responses).
  2063. */
  2064. /**
  2065. * DOC: Powersave support
  2066. *
  2067. * mac80211 has support for various powersave implementations.
  2068. *
  2069. * First, it can support hardware that handles all powersaving by itself,
  2070. * such hardware should simply set the %IEEE80211_HW_SUPPORTS_PS hardware
  2071. * flag. In that case, it will be told about the desired powersave mode
  2072. * with the %IEEE80211_CONF_PS flag depending on the association status.
  2073. * The hardware must take care of sending nullfunc frames when necessary,
  2074. * i.e. when entering and leaving powersave mode. The hardware is required
  2075. * to look at the AID in beacons and signal to the AP that it woke up when
  2076. * it finds traffic directed to it.
  2077. *
  2078. * %IEEE80211_CONF_PS flag enabled means that the powersave mode defined in
  2079. * IEEE 802.11-2007 section 11.2 is enabled. This is not to be confused
  2080. * with hardware wakeup and sleep states. Driver is responsible for waking
  2081. * up the hardware before issuing commands to the hardware and putting it
  2082. * back to sleep at appropriate times.
  2083. *
  2084. * When PS is enabled, hardware needs to wakeup for beacons and receive the
  2085. * buffered multicast/broadcast frames after the beacon. Also it must be
  2086. * possible to send frames and receive the acknowledment frame.
  2087. *
  2088. * Other hardware designs cannot send nullfunc frames by themselves and also
  2089. * need software support for parsing the TIM bitmap. This is also supported
  2090. * by mac80211 by combining the %IEEE80211_HW_SUPPORTS_PS and
  2091. * %IEEE80211_HW_PS_NULLFUNC_STACK flags. The hardware is of course still
  2092. * required to pass up beacons. The hardware is still required to handle
  2093. * waking up for multicast traffic; if it cannot the driver must handle that
  2094. * as best as it can, mac80211 is too slow to do that.
  2095. *
  2096. * Dynamic powersave is an extension to normal powersave in which the
  2097. * hardware stays awake for a user-specified period of time after sending a
  2098. * frame so that reply frames need not be buffered and therefore delayed to
  2099. * the next wakeup. It's compromise of getting good enough latency when
  2100. * there's data traffic and still saving significantly power in idle
  2101. * periods.
  2102. *
  2103. * Dynamic powersave is simply supported by mac80211 enabling and disabling
  2104. * PS based on traffic. Driver needs to only set %IEEE80211_HW_SUPPORTS_PS
  2105. * flag and mac80211 will handle everything automatically. Additionally,
  2106. * hardware having support for the dynamic PS feature may set the
  2107. * %IEEE80211_HW_SUPPORTS_DYNAMIC_PS flag to indicate that it can support
  2108. * dynamic PS mode itself. The driver needs to look at the
  2109. * @dynamic_ps_timeout hardware configuration value and use it that value
  2110. * whenever %IEEE80211_CONF_PS is set. In this case mac80211 will disable
  2111. * dynamic PS feature in stack and will just keep %IEEE80211_CONF_PS
  2112. * enabled whenever user has enabled powersave.
  2113. *
  2114. * Driver informs U-APSD client support by enabling
  2115. * %IEEE80211_VIF_SUPPORTS_UAPSD flag. The mode is configured through the
  2116. * uapsd parameter in conf_tx() operation. Hardware needs to send the QoS
  2117. * Nullfunc frames and stay awake until the service period has ended. To
  2118. * utilize U-APSD, dynamic powersave is disabled for voip AC and all frames
  2119. * from that AC are transmitted with powersave enabled.
  2120. *
  2121. * Note: U-APSD client mode is not yet supported with
  2122. * %IEEE80211_HW_PS_NULLFUNC_STACK.
  2123. */
  2124. /**
  2125. * DOC: Beacon filter support
  2126. *
  2127. * Some hardware have beacon filter support to reduce host cpu wakeups
  2128. * which will reduce system power consumption. It usually works so that
  2129. * the firmware creates a checksum of the beacon but omits all constantly
  2130. * changing elements (TSF, TIM etc). Whenever the checksum changes the
  2131. * beacon is forwarded to the host, otherwise it will be just dropped. That
  2132. * way the host will only receive beacons where some relevant information
  2133. * (for example ERP protection or WMM settings) have changed.
  2134. *
  2135. * Beacon filter support is advertised with the %IEEE80211_VIF_BEACON_FILTER
  2136. * interface capability. The driver needs to enable beacon filter support
  2137. * whenever power save is enabled, that is %IEEE80211_CONF_PS is set. When
  2138. * power save is enabled, the stack will not check for beacon loss and the
  2139. * driver needs to notify about loss of beacons with ieee80211_beacon_loss().
  2140. *
  2141. * The time (or number of beacons missed) until the firmware notifies the
  2142. * driver of a beacon loss event (which in turn causes the driver to call
  2143. * ieee80211_beacon_loss()) should be configurable and will be controlled
  2144. * by mac80211 and the roaming algorithm in the future.
  2145. *
  2146. * Since there may be constantly changing information elements that nothing
  2147. * in the software stack cares about, we will, in the future, have mac80211
  2148. * tell the driver which information elements are interesting in the sense
  2149. * that we want to see changes in them. This will include
  2150. * - a list of information element IDs
  2151. * - a list of OUIs for the vendor information element
  2152. *
  2153. * Ideally, the hardware would filter out any beacons without changes in the
  2154. * requested elements, but if it cannot support that it may, at the expense
  2155. * of some efficiency, filter out only a subset. For example, if the device
  2156. * doesn't support checking for OUIs it should pass up all changes in all
  2157. * vendor information elements.
  2158. *
  2159. * Note that change, for the sake of simplification, also includes information
  2160. * elements appearing or disappearing from the beacon.
  2161. *
  2162. * Some hardware supports an "ignore list" instead, just make sure nothing
  2163. * that was requested is on the ignore list, and include commonly changing
  2164. * information element IDs in the ignore list, for example 11 (BSS load) and
  2165. * the various vendor-assigned IEs with unknown contents (128, 129, 133-136,
  2166. * 149, 150, 155, 156, 173, 176, 178, 179, 219); for forward compatibility
  2167. * it could also include some currently unused IDs.
  2168. *
  2169. *
  2170. * In addition to these capabilities, hardware should support notifying the
  2171. * host of changes in the beacon RSSI. This is relevant to implement roaming
  2172. * when no traffic is flowing (when traffic is flowing we see the RSSI of
  2173. * the received data packets). This can consist in notifying the host when
  2174. * the RSSI changes significantly or when it drops below or rises above
  2175. * configurable thresholds. In the future these thresholds will also be
  2176. * configured by mac80211 (which gets them from userspace) to implement
  2177. * them as the roaming algorithm requires.
  2178. *
  2179. * If the hardware cannot implement this, the driver should ask it to
  2180. * periodically pass beacon frames to the host so that software can do the
  2181. * signal strength threshold checking.
  2182. */
  2183. /**
  2184. * DOC: Spatial multiplexing power save
  2185. *
  2186. * SMPS (Spatial multiplexing power save) is a mechanism to conserve
  2187. * power in an 802.11n implementation. For details on the mechanism
  2188. * and rationale, please refer to 802.11 (as amended by 802.11n-2009)
  2189. * "11.2.3 SM power save".
  2190. *
  2191. * The mac80211 implementation is capable of sending action frames
  2192. * to update the AP about the station's SMPS mode, and will instruct
  2193. * the driver to enter the specific mode. It will also announce the
  2194. * requested SMPS mode during the association handshake. Hardware
  2195. * support for this feature is required, and can be indicated by
  2196. * hardware flags.
  2197. *
  2198. * The default mode will be "automatic", which nl80211/cfg80211
  2199. * defines to be dynamic SMPS in (regular) powersave, and SMPS
  2200. * turned off otherwise.
  2201. *
  2202. * To support this feature, the driver must set the appropriate
  2203. * hardware support flags, and handle the SMPS flag to the config()
  2204. * operation. It will then with this mechanism be instructed to
  2205. * enter the requested SMPS mode while associated to an HT AP.
  2206. */
  2207. /**
  2208. * DOC: Frame filtering
  2209. *
  2210. * mac80211 requires to see many management frames for proper
  2211. * operation, and users may want to see many more frames when
  2212. * in monitor mode. However, for best CPU usage and power consumption,
  2213. * having as few frames as possible percolate through the stack is
  2214. * desirable. Hence, the hardware should filter as much as possible.
  2215. *
  2216. * To achieve this, mac80211 uses filter flags (see below) to tell
  2217. * the driver's configure_filter() function which frames should be
  2218. * passed to mac80211 and which should be filtered out.
  2219. *
  2220. * Before configure_filter() is invoked, the prepare_multicast()
  2221. * callback is invoked with the parameters @mc_count and @mc_list
  2222. * for the combined multicast address list of all virtual interfaces.
  2223. * It's use is optional, and it returns a u64 that is passed to
  2224. * configure_filter(). Additionally, configure_filter() has the
  2225. * arguments @changed_flags telling which flags were changed and
  2226. * @total_flags with the new flag states.
  2227. *
  2228. * If your device has no multicast address filters your driver will
  2229. * need to check both the %FIF_ALLMULTI flag and the @mc_count
  2230. * parameter to see whether multicast frames should be accepted
  2231. * or dropped.
  2232. *
  2233. * All unsupported flags in @total_flags must be cleared.
  2234. * Hardware does not support a flag if it is incapable of _passing_
  2235. * the frame to the stack. Otherwise the driver must ignore
  2236. * the flag, but not clear it.
  2237. * You must _only_ clear the flag (announce no support for the
  2238. * flag to mac80211) if you are not able to pass the packet type
  2239. * to the stack (so the hardware always filters it).
  2240. * So for example, you should clear @FIF_CONTROL, if your hardware
  2241. * always filters control frames. If your hardware always passes
  2242. * control frames to the kernel and is incapable of filtering them,
  2243. * you do _not_ clear the @FIF_CONTROL flag.
  2244. * This rule applies to all other FIF flags as well.
  2245. */
  2246. /**
  2247. * DOC: AP support for powersaving clients
  2248. *
  2249. * In order to implement AP and P2P GO modes, mac80211 has support for
  2250. * client powersaving, both "legacy" PS (PS-Poll/null data) and uAPSD.
  2251. * There currently is no support for sAPSD.
  2252. *
  2253. * There is one assumption that mac80211 makes, namely that a client
  2254. * will not poll with PS-Poll and trigger with uAPSD at the same time.
  2255. * Both are supported, and both can be used by the same client, but
  2256. * they can't be used concurrently by the same client. This simplifies
  2257. * the driver code.
  2258. *
  2259. * The first thing to keep in mind is that there is a flag for complete
  2260. * driver implementation: %IEEE80211_HW_AP_LINK_PS. If this flag is set,
  2261. * mac80211 expects the driver to handle most of the state machine for
  2262. * powersaving clients and will ignore the PM bit in incoming frames.
  2263. * Drivers then use ieee80211_sta_ps_transition() to inform mac80211 of
  2264. * stations' powersave transitions. In this mode, mac80211 also doesn't
  2265. * handle PS-Poll/uAPSD.
  2266. *
  2267. * In the mode without %IEEE80211_HW_AP_LINK_PS, mac80211 will check the
  2268. * PM bit in incoming frames for client powersave transitions. When a
  2269. * station goes to sleep, we will stop transmitting to it. There is,
  2270. * however, a race condition: a station might go to sleep while there is
  2271. * data buffered on hardware queues. If the device has support for this
  2272. * it will reject frames, and the driver should give the frames back to
  2273. * mac80211 with the %IEEE80211_TX_STAT_TX_FILTERED flag set which will
  2274. * cause mac80211 to retry the frame when the station wakes up. The
  2275. * driver is also notified of powersave transitions by calling its
  2276. * @sta_notify callback.
  2277. *
  2278. * When the station is asleep, it has three choices: it can wake up,
  2279. * it can PS-Poll, or it can possibly start a uAPSD service period.
  2280. * Waking up is implemented by simply transmitting all buffered (and
  2281. * filtered) frames to the station. This is the easiest case. When
  2282. * the station sends a PS-Poll or a uAPSD trigger frame, mac80211
  2283. * will inform the driver of this with the @allow_buffered_frames
  2284. * callback; this callback is optional. mac80211 will then transmit
  2285. * the frames as usual and set the %IEEE80211_TX_CTL_NO_PS_BUFFER
  2286. * on each frame. The last frame in the service period (or the only
  2287. * response to a PS-Poll) also has %IEEE80211_TX_STATUS_EOSP set to
  2288. * indicate that it ends the service period; as this frame must have
  2289. * TX status report it also sets %IEEE80211_TX_CTL_REQ_TX_STATUS.
  2290. * When TX status is reported for this frame, the service period is
  2291. * marked has having ended and a new one can be started by the peer.
  2292. *
  2293. * Additionally, non-bufferable MMPDUs can also be transmitted by
  2294. * mac80211 with the %IEEE80211_TX_CTL_NO_PS_BUFFER set in them.
  2295. *
  2296. * Another race condition can happen on some devices like iwlwifi
  2297. * when there are frames queued for the station and it wakes up
  2298. * or polls; the frames that are already queued could end up being
  2299. * transmitted first instead, causing reordering and/or wrong
  2300. * processing of the EOSP. The cause is that allowing frames to be
  2301. * transmitted to a certain station is out-of-band communication to
  2302. * the device. To allow this problem to be solved, the driver can
  2303. * call ieee80211_sta_block_awake() if frames are buffered when it
  2304. * is notified that the station went to sleep. When all these frames
  2305. * have been filtered (see above), it must call the function again
  2306. * to indicate that the station is no longer blocked.
  2307. *
  2308. * If the driver buffers frames in the driver for aggregation in any
  2309. * way, it must use the ieee80211_sta_set_buffered() call when it is
  2310. * notified of the station going to sleep to inform mac80211 of any
  2311. * TIDs that have frames buffered. Note that when a station wakes up
  2312. * this information is reset (hence the requirement to call it when
  2313. * informed of the station going to sleep). Then, when a service
  2314. * period starts for any reason, @release_buffered_frames is called
  2315. * with the number of frames to be released and which TIDs they are
  2316. * to come from. In this case, the driver is responsible for setting
  2317. * the EOSP (for uAPSD) and MORE_DATA bits in the released frames,
  2318. * to help the @more_data parameter is passed to tell the driver if
  2319. * there is more data on other TIDs -- the TIDs to release frames
  2320. * from are ignored since mac80211 doesn't know how many frames the
  2321. * buffers for those TIDs contain.
  2322. *
  2323. * If the driver also implement GO mode, where absence periods may
  2324. * shorten service periods (or abort PS-Poll responses), it must
  2325. * filter those response frames except in the case of frames that
  2326. * are buffered in the driver -- those must remain buffered to avoid
  2327. * reordering. Because it is possible that no frames are released
  2328. * in this case, the driver must call ieee80211_sta_eosp()
  2329. * to indicate to mac80211 that the service period ended anyway.
  2330. *
  2331. * Finally, if frames from multiple TIDs are released from mac80211
  2332. * but the driver might reorder them, it must clear & set the flags
  2333. * appropriately (only the last frame may have %IEEE80211_TX_STATUS_EOSP)
  2334. * and also take care of the EOSP and MORE_DATA bits in the frame.
  2335. * The driver may also use ieee80211_sta_eosp() in this case.
  2336. *
  2337. * Note that if the driver ever buffers frames other than QoS-data
  2338. * frames, it must take care to never send a non-QoS-data frame as
  2339. * the last frame in a service period, adding a QoS-nulldata frame
  2340. * after a non-QoS-data frame if needed.
  2341. */
  2342. /**
  2343. * DOC: HW queue control
  2344. *
  2345. * Before HW queue control was introduced, mac80211 only had a single static
  2346. * assignment of per-interface AC software queues to hardware queues. This
  2347. * was problematic for a few reasons:
  2348. * 1) off-channel transmissions might get stuck behind other frames
  2349. * 2) multiple virtual interfaces couldn't be handled correctly
  2350. * 3) after-DTIM frames could get stuck behind other frames
  2351. *
  2352. * To solve this, hardware typically uses multiple different queues for all
  2353. * the different usages, and this needs to be propagated into mac80211 so it
  2354. * won't have the same problem with the software queues.
  2355. *
  2356. * Therefore, mac80211 now offers the %IEEE80211_HW_QUEUE_CONTROL capability
  2357. * flag that tells it that the driver implements its own queue control. To do
  2358. * so, the driver will set up the various queues in each &struct ieee80211_vif
  2359. * and the offchannel queue in &struct ieee80211_hw. In response, mac80211 will
  2360. * use those queue IDs in the hw_queue field of &struct ieee80211_tx_info and
  2361. * if necessary will queue the frame on the right software queue that mirrors
  2362. * the hardware queue.
  2363. * Additionally, the driver has to then use these HW queue IDs for the queue
  2364. * management functions (ieee80211_stop_queue() et al.)
  2365. *
  2366. * The driver is free to set up the queue mappings as needed, multiple virtual
  2367. * interfaces may map to the same hardware queues if needed. The setup has to
  2368. * happen during add_interface or change_interface callbacks. For example, a
  2369. * driver supporting station+station and station+AP modes might decide to have
  2370. * 10 hardware queues to handle different scenarios:
  2371. *
  2372. * 4 AC HW queues for 1st vif: 0, 1, 2, 3
  2373. * 4 AC HW queues for 2nd vif: 4, 5, 6, 7
  2374. * after-DTIM queue for AP: 8
  2375. * off-channel queue: 9
  2376. *
  2377. * It would then set up the hardware like this:
  2378. * hw.offchannel_tx_hw_queue = 9
  2379. *
  2380. * and the first virtual interface that is added as follows:
  2381. * vif.hw_queue[IEEE80211_AC_VO] = 0
  2382. * vif.hw_queue[IEEE80211_AC_VI] = 1
  2383. * vif.hw_queue[IEEE80211_AC_BE] = 2
  2384. * vif.hw_queue[IEEE80211_AC_BK] = 3
  2385. * vif.cab_queue = 8 // if AP mode, otherwise %IEEE80211_INVAL_HW_QUEUE
  2386. * and the second virtual interface with 4-7.
  2387. *
  2388. * If queue 6 gets full, for example, mac80211 would only stop the second
  2389. * virtual interface's BE queue since virtual interface queues are per AC.
  2390. *
  2391. * Note that the vif.cab_queue value should be set to %IEEE80211_INVAL_HW_QUEUE
  2392. * whenever the queue is not used (i.e. the interface is not in AP mode) if the
  2393. * queue could potentially be shared since mac80211 will look at cab_queue when
  2394. * a queue is stopped/woken even if the interface is not in AP mode.
  2395. */
  2396. /**
  2397. * enum ieee80211_filter_flags - hardware filter flags
  2398. *
  2399. * These flags determine what the filter in hardware should be
  2400. * programmed to let through and what should not be passed to the
  2401. * stack. It is always safe to pass more frames than requested,
  2402. * but this has negative impact on power consumption.
  2403. *
  2404. * @FIF_ALLMULTI: pass all multicast frames, this is used if requested
  2405. * by the user or if the hardware is not capable of filtering by
  2406. * multicast address.
  2407. *
  2408. * @FIF_FCSFAIL: pass frames with failed FCS (but you need to set the
  2409. * %RX_FLAG_FAILED_FCS_CRC for them)
  2410. *
  2411. * @FIF_PLCPFAIL: pass frames with failed PLCP CRC (but you need to set
  2412. * the %RX_FLAG_FAILED_PLCP_CRC for them
  2413. *
  2414. * @FIF_BCN_PRBRESP_PROMISC: This flag is set during scanning to indicate
  2415. * to the hardware that it should not filter beacons or probe responses
  2416. * by BSSID. Filtering them can greatly reduce the amount of processing
  2417. * mac80211 needs to do and the amount of CPU wakeups, so you should
  2418. * honour this flag if possible.
  2419. *
  2420. * @FIF_CONTROL: pass control frames (except for PS Poll) addressed to this
  2421. * station
  2422. *
  2423. * @FIF_OTHER_BSS: pass frames destined to other BSSes
  2424. *
  2425. * @FIF_PSPOLL: pass PS Poll frames, if PROMISC_IN_BSS is not set then only
  2426. * those addressed to this station.
  2427. *
  2428. * @FIF_PROBE_REQ: pass probe request frames
  2429. */
  2430. enum ieee80211_filter_flags {
  2431. FIF_ALLMULTI = 1<<1,
  2432. FIF_FCSFAIL = 1<<2,
  2433. FIF_PLCPFAIL = 1<<3,
  2434. FIF_BCN_PRBRESP_PROMISC = 1<<4,
  2435. FIF_CONTROL = 1<<5,
  2436. FIF_OTHER_BSS = 1<<6,
  2437. FIF_PSPOLL = 1<<7,
  2438. FIF_PROBE_REQ = 1<<8,
  2439. };
  2440. /**
  2441. * enum ieee80211_ampdu_mlme_action - A-MPDU actions
  2442. *
  2443. * These flags are used with the ampdu_action() callback in
  2444. * &struct ieee80211_ops to indicate which action is needed.
  2445. *
  2446. * Note that drivers MUST be able to deal with a TX aggregation
  2447. * session being stopped even before they OK'ed starting it by
  2448. * calling ieee80211_start_tx_ba_cb_irqsafe, because the peer
  2449. * might receive the addBA frame and send a delBA right away!
  2450. *
  2451. * @IEEE80211_AMPDU_RX_START: start RX aggregation
  2452. * @IEEE80211_AMPDU_RX_STOP: stop RX aggregation
  2453. * @IEEE80211_AMPDU_TX_START: start TX aggregation
  2454. * @IEEE80211_AMPDU_TX_OPERATIONAL: TX aggregation has become operational
  2455. * @IEEE80211_AMPDU_TX_STOP_CONT: stop TX aggregation but continue transmitting
  2456. * queued packets, now unaggregated. After all packets are transmitted the
  2457. * driver has to call ieee80211_stop_tx_ba_cb_irqsafe().
  2458. * @IEEE80211_AMPDU_TX_STOP_FLUSH: stop TX aggregation and flush all packets,
  2459. * called when the station is removed. There's no need or reason to call
  2460. * ieee80211_stop_tx_ba_cb_irqsafe() in this case as mac80211 assumes the
  2461. * session is gone and removes the station.
  2462. * @IEEE80211_AMPDU_TX_STOP_FLUSH_CONT: called when TX aggregation is stopped
  2463. * but the driver hasn't called ieee80211_stop_tx_ba_cb_irqsafe() yet and
  2464. * now the connection is dropped and the station will be removed. Drivers
  2465. * should clean up and drop remaining packets when this is called.
  2466. */
  2467. enum ieee80211_ampdu_mlme_action {
  2468. IEEE80211_AMPDU_RX_START,
  2469. IEEE80211_AMPDU_RX_STOP,
  2470. IEEE80211_AMPDU_TX_START,
  2471. IEEE80211_AMPDU_TX_STOP_CONT,
  2472. IEEE80211_AMPDU_TX_STOP_FLUSH,
  2473. IEEE80211_AMPDU_TX_STOP_FLUSH_CONT,
  2474. IEEE80211_AMPDU_TX_OPERATIONAL,
  2475. };
  2476. /**
  2477. * enum ieee80211_frame_release_type - frame release reason
  2478. * @IEEE80211_FRAME_RELEASE_PSPOLL: frame released for PS-Poll
  2479. * @IEEE80211_FRAME_RELEASE_UAPSD: frame(s) released due to
  2480. * frame received on trigger-enabled AC
  2481. */
  2482. enum ieee80211_frame_release_type {
  2483. IEEE80211_FRAME_RELEASE_PSPOLL,
  2484. IEEE80211_FRAME_RELEASE_UAPSD,
  2485. };
  2486. /**
  2487. * enum ieee80211_rate_control_changed - flags to indicate what changed
  2488. *
  2489. * @IEEE80211_RC_BW_CHANGED: The bandwidth that can be used to transmit
  2490. * to this station changed. The actual bandwidth is in the station
  2491. * information -- for HT20/40 the IEEE80211_HT_CAP_SUP_WIDTH_20_40
  2492. * flag changes, for HT and VHT the bandwidth field changes.
  2493. * @IEEE80211_RC_SMPS_CHANGED: The SMPS state of the station changed.
  2494. * @IEEE80211_RC_SUPP_RATES_CHANGED: The supported rate set of this peer
  2495. * changed (in IBSS mode) due to discovering more information about
  2496. * the peer.
  2497. * @IEEE80211_RC_NSS_CHANGED: N_SS (number of spatial streams) was changed
  2498. * by the peer
  2499. */
  2500. enum ieee80211_rate_control_changed {
  2501. IEEE80211_RC_BW_CHANGED = BIT(0),
  2502. IEEE80211_RC_SMPS_CHANGED = BIT(1),
  2503. IEEE80211_RC_SUPP_RATES_CHANGED = BIT(2),
  2504. IEEE80211_RC_NSS_CHANGED = BIT(3),
  2505. };
  2506. /**
  2507. * enum ieee80211_roc_type - remain on channel type
  2508. *
  2509. * With the support for multi channel contexts and multi channel operations,
  2510. * remain on channel operations might be limited/deferred/aborted by other
  2511. * flows/operations which have higher priority (and vise versa).
  2512. * Specifying the ROC type can be used by devices to prioritize the ROC
  2513. * operations compared to other operations/flows.
  2514. *
  2515. * @IEEE80211_ROC_TYPE_NORMAL: There are no special requirements for this ROC.
  2516. * @IEEE80211_ROC_TYPE_MGMT_TX: The remain on channel request is required
  2517. * for sending managment frames offchannel.
  2518. */
  2519. enum ieee80211_roc_type {
  2520. IEEE80211_ROC_TYPE_NORMAL = 0,
  2521. IEEE80211_ROC_TYPE_MGMT_TX,
  2522. };
  2523. /**
  2524. * enum ieee80211_reconfig_complete_type - reconfig type
  2525. *
  2526. * This enum is used by the reconfig_complete() callback to indicate what
  2527. * reconfiguration type was completed.
  2528. *
  2529. * @IEEE80211_RECONFIG_TYPE_RESTART: hw restart type
  2530. * (also due to resume() callback returning 1)
  2531. * @IEEE80211_RECONFIG_TYPE_SUSPEND: suspend type (regardless
  2532. * of wowlan configuration)
  2533. */
  2534. enum ieee80211_reconfig_type {
  2535. IEEE80211_RECONFIG_TYPE_RESTART,
  2536. IEEE80211_RECONFIG_TYPE_SUSPEND,
  2537. };
  2538. /**
  2539. * struct ieee80211_ops - callbacks from mac80211 to the driver
  2540. *
  2541. * This structure contains various callbacks that the driver may
  2542. * handle or, in some cases, must handle, for example to configure
  2543. * the hardware to a new channel or to transmit a frame.
  2544. *
  2545. * @tx: Handler that 802.11 module calls for each transmitted frame.
  2546. * skb contains the buffer starting from the IEEE 802.11 header.
  2547. * The low-level driver should send the frame out based on
  2548. * configuration in the TX control data. This handler should,
  2549. * preferably, never fail and stop queues appropriately.
  2550. * Must be atomic.
  2551. *
  2552. * @start: Called before the first netdevice attached to the hardware
  2553. * is enabled. This should turn on the hardware and must turn on
  2554. * frame reception (for possibly enabled monitor interfaces.)
  2555. * Returns negative error codes, these may be seen in userspace,
  2556. * or zero.
  2557. * When the device is started it should not have a MAC address
  2558. * to avoid acknowledging frames before a non-monitor device
  2559. * is added.
  2560. * Must be implemented and can sleep.
  2561. *
  2562. * @stop: Called after last netdevice attached to the hardware
  2563. * is disabled. This should turn off the hardware (at least
  2564. * it must turn off frame reception.)
  2565. * May be called right after add_interface if that rejects
  2566. * an interface. If you added any work onto the mac80211 workqueue
  2567. * you should ensure to cancel it on this callback.
  2568. * Must be implemented and can sleep.
  2569. *
  2570. * @suspend: Suspend the device; mac80211 itself will quiesce before and
  2571. * stop transmitting and doing any other configuration, and then
  2572. * ask the device to suspend. This is only invoked when WoWLAN is
  2573. * configured, otherwise the device is deconfigured completely and
  2574. * reconfigured at resume time.
  2575. * The driver may also impose special conditions under which it
  2576. * wants to use the "normal" suspend (deconfigure), say if it only
  2577. * supports WoWLAN when the device is associated. In this case, it
  2578. * must return 1 from this function.
  2579. *
  2580. * @resume: If WoWLAN was configured, this indicates that mac80211 is
  2581. * now resuming its operation, after this the device must be fully
  2582. * functional again. If this returns an error, the only way out is
  2583. * to also unregister the device. If it returns 1, then mac80211
  2584. * will also go through the regular complete restart on resume.
  2585. *
  2586. * @set_wakeup: Enable or disable wakeup when WoWLAN configuration is
  2587. * modified. The reason is that device_set_wakeup_enable() is
  2588. * supposed to be called when the configuration changes, not only
  2589. * in suspend().
  2590. *
  2591. * @add_interface: Called when a netdevice attached to the hardware is
  2592. * enabled. Because it is not called for monitor mode devices, @start
  2593. * and @stop must be implemented.
  2594. * The driver should perform any initialization it needs before
  2595. * the device can be enabled. The initial configuration for the
  2596. * interface is given in the conf parameter.
  2597. * The callback may refuse to add an interface by returning a
  2598. * negative error code (which will be seen in userspace.)
  2599. * Must be implemented and can sleep.
  2600. *
  2601. * @change_interface: Called when a netdevice changes type. This callback
  2602. * is optional, but only if it is supported can interface types be
  2603. * switched while the interface is UP. The callback may sleep.
  2604. * Note that while an interface is being switched, it will not be
  2605. * found by the interface iteration callbacks.
  2606. *
  2607. * @remove_interface: Notifies a driver that an interface is going down.
  2608. * The @stop callback is called after this if it is the last interface
  2609. * and no monitor interfaces are present.
  2610. * When all interfaces are removed, the MAC address in the hardware
  2611. * must be cleared so the device no longer acknowledges packets,
  2612. * the mac_addr member of the conf structure is, however, set to the
  2613. * MAC address of the device going away.
  2614. * Hence, this callback must be implemented. It can sleep.
  2615. *
  2616. * @config: Handler for configuration requests. IEEE 802.11 code calls this
  2617. * function to change hardware configuration, e.g., channel.
  2618. * This function should never fail but returns a negative error code
  2619. * if it does. The callback can sleep.
  2620. *
  2621. * @bss_info_changed: Handler for configuration requests related to BSS
  2622. * parameters that may vary during BSS's lifespan, and may affect low
  2623. * level driver (e.g. assoc/disassoc status, erp parameters).
  2624. * This function should not be used if no BSS has been set, unless
  2625. * for association indication. The @changed parameter indicates which
  2626. * of the bss parameters has changed when a call is made. The callback
  2627. * can sleep.
  2628. *
  2629. * @prepare_multicast: Prepare for multicast filter configuration.
  2630. * This callback is optional, and its return value is passed
  2631. * to configure_filter(). This callback must be atomic.
  2632. *
  2633. * @configure_filter: Configure the device's RX filter.
  2634. * See the section "Frame filtering" for more information.
  2635. * This callback must be implemented and can sleep.
  2636. *
  2637. * @set_tim: Set TIM bit. mac80211 calls this function when a TIM bit
  2638. * must be set or cleared for a given STA. Must be atomic.
  2639. *
  2640. * @set_key: See the section "Hardware crypto acceleration"
  2641. * This callback is only called between add_interface and
  2642. * remove_interface calls, i.e. while the given virtual interface
  2643. * is enabled.
  2644. * Returns a negative error code if the key can't be added.
  2645. * The callback can sleep.
  2646. *
  2647. * @update_tkip_key: See the section "Hardware crypto acceleration"
  2648. * This callback will be called in the context of Rx. Called for drivers
  2649. * which set IEEE80211_KEY_FLAG_TKIP_REQ_RX_P1_KEY.
  2650. * The callback must be atomic.
  2651. *
  2652. * @set_rekey_data: If the device supports GTK rekeying, for example while the
  2653. * host is suspended, it can assign this callback to retrieve the data
  2654. * necessary to do GTK rekeying, this is the KEK, KCK and replay counter.
  2655. * After rekeying was done it should (for example during resume) notify
  2656. * userspace of the new replay counter using ieee80211_gtk_rekey_notify().
  2657. *
  2658. * @set_default_unicast_key: Set the default (unicast) key index, useful for
  2659. * WEP when the device sends data packets autonomously, e.g. for ARP
  2660. * offloading. The index can be 0-3, or -1 for unsetting it.
  2661. *
  2662. * @hw_scan: Ask the hardware to service the scan request, no need to start
  2663. * the scan state machine in stack. The scan must honour the channel
  2664. * configuration done by the regulatory agent in the wiphy's
  2665. * registered bands. The hardware (or the driver) needs to make sure
  2666. * that power save is disabled.
  2667. * The @req ie/ie_len members are rewritten by mac80211 to contain the
  2668. * entire IEs after the SSID, so that drivers need not look at these
  2669. * at all but just send them after the SSID -- mac80211 includes the
  2670. * (extended) supported rates and HT information (where applicable).
  2671. * When the scan finishes, ieee80211_scan_completed() must be called;
  2672. * note that it also must be called when the scan cannot finish due to
  2673. * any error unless this callback returned a negative error code.
  2674. * The callback can sleep.
  2675. *
  2676. * @cancel_hw_scan: Ask the low-level tp cancel the active hw scan.
  2677. * The driver should ask the hardware to cancel the scan (if possible),
  2678. * but the scan will be completed only after the driver will call
  2679. * ieee80211_scan_completed().
  2680. * This callback is needed for wowlan, to prevent enqueueing a new
  2681. * scan_work after the low-level driver was already suspended.
  2682. * The callback can sleep.
  2683. *
  2684. * @sched_scan_start: Ask the hardware to start scanning repeatedly at
  2685. * specific intervals. The driver must call the
  2686. * ieee80211_sched_scan_results() function whenever it finds results.
  2687. * This process will continue until sched_scan_stop is called.
  2688. *
  2689. * @sched_scan_stop: Tell the hardware to stop an ongoing scheduled scan.
  2690. * In this case, ieee80211_sched_scan_stopped() must not be called.
  2691. *
  2692. * @sw_scan_start: Notifier function that is called just before a software scan
  2693. * is started. Can be NULL, if the driver doesn't need this notification.
  2694. * The mac_addr parameter allows supporting NL80211_SCAN_FLAG_RANDOM_ADDR,
  2695. * the driver may set the NL80211_FEATURE_SCAN_RANDOM_MAC_ADDR flag if it
  2696. * can use this parameter. The callback can sleep.
  2697. *
  2698. * @sw_scan_complete: Notifier function that is called just after a
  2699. * software scan finished. Can be NULL, if the driver doesn't need
  2700. * this notification.
  2701. * The callback can sleep.
  2702. *
  2703. * @get_stats: Return low-level statistics.
  2704. * Returns zero if statistics are available.
  2705. * The callback can sleep.
  2706. *
  2707. * @get_tkip_seq: If your device implements TKIP encryption in hardware this
  2708. * callback should be provided to read the TKIP transmit IVs (both IV32
  2709. * and IV16) for the given key from hardware.
  2710. * The callback must be atomic.
  2711. *
  2712. * @set_frag_threshold: Configuration of fragmentation threshold. Assign this
  2713. * if the device does fragmentation by itself; if this callback is
  2714. * implemented then the stack will not do fragmentation.
  2715. * The callback can sleep.
  2716. *
  2717. * @set_rts_threshold: Configuration of RTS threshold (if device needs it)
  2718. * The callback can sleep.
  2719. *
  2720. * @sta_add: Notifies low level driver about addition of an associated station,
  2721. * AP, IBSS/WDS/mesh peer etc. This callback can sleep.
  2722. *
  2723. * @sta_remove: Notifies low level driver about removal of an associated
  2724. * station, AP, IBSS/WDS/mesh peer etc. Note that after the callback
  2725. * returns it isn't safe to use the pointer, not even RCU protected;
  2726. * no RCU grace period is guaranteed between returning here and freeing
  2727. * the station. See @sta_pre_rcu_remove if needed.
  2728. * This callback can sleep.
  2729. *
  2730. * @sta_add_debugfs: Drivers can use this callback to add debugfs files
  2731. * when a station is added to mac80211's station list. This callback
  2732. * and @sta_remove_debugfs should be within a CONFIG_MAC80211_DEBUGFS
  2733. * conditional. This callback can sleep.
  2734. *
  2735. * @sta_remove_debugfs: Remove the debugfs files which were added using
  2736. * @sta_add_debugfs. This callback can sleep.
  2737. *
  2738. * @sta_notify: Notifies low level driver about power state transition of an
  2739. * associated station, AP, IBSS/WDS/mesh peer etc. For a VIF operating
  2740. * in AP mode, this callback will not be called when the flag
  2741. * %IEEE80211_HW_AP_LINK_PS is set. Must be atomic.
  2742. *
  2743. * @sta_state: Notifies low level driver about state transition of a
  2744. * station (which can be the AP, a client, IBSS/WDS/mesh peer etc.)
  2745. * This callback is mutually exclusive with @sta_add/@sta_remove.
  2746. * It must not fail for down transitions but may fail for transitions
  2747. * up the list of states. Also note that after the callback returns it
  2748. * isn't safe to use the pointer, not even RCU protected - no RCU grace
  2749. * period is guaranteed between returning here and freeing the station.
  2750. * See @sta_pre_rcu_remove if needed.
  2751. * The callback can sleep.
  2752. *
  2753. * @sta_pre_rcu_remove: Notify driver about station removal before RCU
  2754. * synchronisation. This is useful if a driver needs to have station
  2755. * pointers protected using RCU, it can then use this call to clear
  2756. * the pointers instead of waiting for an RCU grace period to elapse
  2757. * in @sta_state.
  2758. * The callback can sleep.
  2759. *
  2760. * @sta_rc_update: Notifies the driver of changes to the bitrates that can be
  2761. * used to transmit to the station. The changes are advertised with bits
  2762. * from &enum ieee80211_rate_control_changed and the values are reflected
  2763. * in the station data. This callback should only be used when the driver
  2764. * uses hardware rate control (%IEEE80211_HW_HAS_RATE_CONTROL) since
  2765. * otherwise the rate control algorithm is notified directly.
  2766. * Must be atomic.
  2767. * @sta_rate_tbl_update: Notifies the driver that the rate table changed. This
  2768. * is only used if the configured rate control algorithm actually uses
  2769. * the new rate table API, and is therefore optional. Must be atomic.
  2770. *
  2771. * @sta_statistics: Get statistics for this station. For example with beacon
  2772. * filtering, the statistics kept by mac80211 might not be accurate, so
  2773. * let the driver pre-fill the statistics. The driver can fill most of
  2774. * the values (indicating which by setting the filled bitmap), but not
  2775. * all of them make sense - see the source for which ones are possible.
  2776. * Statistics that the driver doesn't fill will be filled by mac80211.
  2777. * The callback can sleep.
  2778. *
  2779. * @conf_tx: Configure TX queue parameters (EDCF (aifs, cw_min, cw_max),
  2780. * bursting) for a hardware TX queue.
  2781. * Returns a negative error code on failure.
  2782. * The callback can sleep.
  2783. *
  2784. * @get_tsf: Get the current TSF timer value from firmware/hardware. Currently,
  2785. * this is only used for IBSS mode BSSID merging and debugging. Is not a
  2786. * required function.
  2787. * The callback can sleep.
  2788. *
  2789. * @set_tsf: Set the TSF timer to the specified value in the firmware/hardware.
  2790. * Currently, this is only used for IBSS mode debugging. Is not a
  2791. * required function.
  2792. * The callback can sleep.
  2793. *
  2794. * @reset_tsf: Reset the TSF timer and allow firmware/hardware to synchronize
  2795. * with other STAs in the IBSS. This is only used in IBSS mode. This
  2796. * function is optional if the firmware/hardware takes full care of
  2797. * TSF synchronization.
  2798. * The callback can sleep.
  2799. *
  2800. * @tx_last_beacon: Determine whether the last IBSS beacon was sent by us.
  2801. * This is needed only for IBSS mode and the result of this function is
  2802. * used to determine whether to reply to Probe Requests.
  2803. * Returns non-zero if this device sent the last beacon.
  2804. * The callback can sleep.
  2805. *
  2806. * @ampdu_action: Perform a certain A-MPDU action
  2807. * The RA/TID combination determines the destination and TID we want
  2808. * the ampdu action to be performed for. The action is defined through
  2809. * ieee80211_ampdu_mlme_action. Starting sequence number (@ssn)
  2810. * is the first frame we expect to perform the action on. Notice
  2811. * that TX/RX_STOP can pass NULL for this parameter.
  2812. * The @buf_size parameter is only valid when the action is set to
  2813. * %IEEE80211_AMPDU_TX_OPERATIONAL and indicates the peer's reorder
  2814. * buffer size (number of subframes) for this session -- the driver
  2815. * may neither send aggregates containing more subframes than this
  2816. * nor send aggregates in a way that lost frames would exceed the
  2817. * buffer size. If just limiting the aggregate size, this would be
  2818. * possible with a buf_size of 8:
  2819. * - TX: 1.....7
  2820. * - RX: 2....7 (lost frame #1)
  2821. * - TX: 8..1...
  2822. * which is invalid since #1 was now re-transmitted well past the
  2823. * buffer size of 8. Correct ways to retransmit #1 would be:
  2824. * - TX: 1 or 18 or 81
  2825. * Even "189" would be wrong since 1 could be lost again.
  2826. *
  2827. * Returns a negative error code on failure.
  2828. * The callback can sleep.
  2829. *
  2830. * @get_survey: Return per-channel survey information
  2831. *
  2832. * @rfkill_poll: Poll rfkill hardware state. If you need this, you also
  2833. * need to set wiphy->rfkill_poll to %true before registration,
  2834. * and need to call wiphy_rfkill_set_hw_state() in the callback.
  2835. * The callback can sleep.
  2836. *
  2837. * @set_coverage_class: Set slot time for given coverage class as specified
  2838. * in IEEE 802.11-2007 section 17.3.8.6 and modify ACK timeout
  2839. * accordingly; coverage class equals to -1 to enable ACK timeout
  2840. * estimation algorithm (dynack). To disable dynack set valid value for
  2841. * coverage class. This callback is not required and may sleep.
  2842. *
  2843. * @testmode_cmd: Implement a cfg80211 test mode command. The passed @vif may
  2844. * be %NULL. The callback can sleep.
  2845. * @testmode_dump: Implement a cfg80211 test mode dump. The callback can sleep.
  2846. *
  2847. * @flush: Flush all pending frames from the hardware queue, making sure
  2848. * that the hardware queues are empty. The @queues parameter is a bitmap
  2849. * of queues to flush, which is useful if different virtual interfaces
  2850. * use different hardware queues; it may also indicate all queues.
  2851. * If the parameter @drop is set to %true, pending frames may be dropped.
  2852. * Note that vif can be NULL.
  2853. * The callback can sleep.
  2854. *
  2855. * @channel_switch: Drivers that need (or want) to offload the channel
  2856. * switch operation for CSAs received from the AP may implement this
  2857. * callback. They must then call ieee80211_chswitch_done() to indicate
  2858. * completion of the channel switch.
  2859. *
  2860. * @set_antenna: Set antenna configuration (tx_ant, rx_ant) on the device.
  2861. * Parameters are bitmaps of allowed antennas to use for TX/RX. Drivers may
  2862. * reject TX/RX mask combinations they cannot support by returning -EINVAL
  2863. * (also see nl80211.h @NL80211_ATTR_WIPHY_ANTENNA_TX).
  2864. *
  2865. * @get_antenna: Get current antenna configuration from device (tx_ant, rx_ant).
  2866. *
  2867. * @remain_on_channel: Starts an off-channel period on the given channel, must
  2868. * call back to ieee80211_ready_on_channel() when on that channel. Note
  2869. * that normal channel traffic is not stopped as this is intended for hw
  2870. * offload. Frames to transmit on the off-channel channel are transmitted
  2871. * normally except for the %IEEE80211_TX_CTL_TX_OFFCHAN flag. When the
  2872. * duration (which will always be non-zero) expires, the driver must call
  2873. * ieee80211_remain_on_channel_expired().
  2874. * Note that this callback may be called while the device is in IDLE and
  2875. * must be accepted in this case.
  2876. * This callback may sleep.
  2877. * @cancel_remain_on_channel: Requests that an ongoing off-channel period is
  2878. * aborted before it expires. This callback may sleep.
  2879. *
  2880. * @set_ringparam: Set tx and rx ring sizes.
  2881. *
  2882. * @get_ringparam: Get tx and rx ring current and maximum sizes.
  2883. *
  2884. * @tx_frames_pending: Check if there is any pending frame in the hardware
  2885. * queues before entering power save.
  2886. *
  2887. * @set_bitrate_mask: Set a mask of rates to be used for rate control selection
  2888. * when transmitting a frame. Currently only legacy rates are handled.
  2889. * The callback can sleep.
  2890. * @event_callback: Notify driver about any event in mac80211. See
  2891. * &enum ieee80211_event_type for the different types.
  2892. * The callback must be atomic.
  2893. *
  2894. * @release_buffered_frames: Release buffered frames according to the given
  2895. * parameters. In the case where the driver buffers some frames for
  2896. * sleeping stations mac80211 will use this callback to tell the driver
  2897. * to release some frames, either for PS-poll or uAPSD.
  2898. * Note that if the @more_data parameter is %false the driver must check
  2899. * if there are more frames on the given TIDs, and if there are more than
  2900. * the frames being released then it must still set the more-data bit in
  2901. * the frame. If the @more_data parameter is %true, then of course the
  2902. * more-data bit must always be set.
  2903. * The @tids parameter tells the driver which TIDs to release frames
  2904. * from, for PS-poll it will always have only a single bit set.
  2905. * In the case this is used for a PS-poll initiated release, the
  2906. * @num_frames parameter will always be 1 so code can be shared. In
  2907. * this case the driver must also set %IEEE80211_TX_STATUS_EOSP flag
  2908. * on the TX status (and must report TX status) so that the PS-poll
  2909. * period is properly ended. This is used to avoid sending multiple
  2910. * responses for a retried PS-poll frame.
  2911. * In the case this is used for uAPSD, the @num_frames parameter may be
  2912. * bigger than one, but the driver may send fewer frames (it must send
  2913. * at least one, however). In this case it is also responsible for
  2914. * setting the EOSP flag in the QoS header of the frames. Also, when the
  2915. * service period ends, the driver must set %IEEE80211_TX_STATUS_EOSP
  2916. * on the last frame in the SP. Alternatively, it may call the function
  2917. * ieee80211_sta_eosp() to inform mac80211 of the end of the SP.
  2918. * This callback must be atomic.
  2919. * @allow_buffered_frames: Prepare device to allow the given number of frames
  2920. * to go out to the given station. The frames will be sent by mac80211
  2921. * via the usual TX path after this call. The TX information for frames
  2922. * released will also have the %IEEE80211_TX_CTL_NO_PS_BUFFER flag set
  2923. * and the last one will also have %IEEE80211_TX_STATUS_EOSP set. In case
  2924. * frames from multiple TIDs are released and the driver might reorder
  2925. * them between the TIDs, it must set the %IEEE80211_TX_STATUS_EOSP flag
  2926. * on the last frame and clear it on all others and also handle the EOSP
  2927. * bit in the QoS header correctly. Alternatively, it can also call the
  2928. * ieee80211_sta_eosp() function.
  2929. * The @tids parameter is a bitmap and tells the driver which TIDs the
  2930. * frames will be on; it will at most have two bits set.
  2931. * This callback must be atomic.
  2932. *
  2933. * @get_et_sset_count: Ethtool API to get string-set count.
  2934. *
  2935. * @get_et_stats: Ethtool API to get a set of u64 stats.
  2936. *
  2937. * @get_et_strings: Ethtool API to get a set of strings to describe stats
  2938. * and perhaps other supported types of ethtool data-sets.
  2939. *
  2940. * @mgd_prepare_tx: Prepare for transmitting a management frame for association
  2941. * before associated. In multi-channel scenarios, a virtual interface is
  2942. * bound to a channel before it is associated, but as it isn't associated
  2943. * yet it need not necessarily be given airtime, in particular since any
  2944. * transmission to a P2P GO needs to be synchronized against the GO's
  2945. * powersave state. mac80211 will call this function before transmitting a
  2946. * management frame prior to having successfully associated to allow the
  2947. * driver to give it channel time for the transmission, to get a response
  2948. * and to be able to synchronize with the GO.
  2949. * The callback will be called before each transmission and upon return
  2950. * mac80211 will transmit the frame right away.
  2951. * The callback is optional and can (should!) sleep.
  2952. *
  2953. * @mgd_protect_tdls_discover: Protect a TDLS discovery session. After sending
  2954. * a TDLS discovery-request, we expect a reply to arrive on the AP's
  2955. * channel. We must stay on the channel (no PSM, scan, etc.), since a TDLS
  2956. * setup-response is a direct packet not buffered by the AP.
  2957. * mac80211 will call this function just before the transmission of a TDLS
  2958. * discovery-request. The recommended period of protection is at least
  2959. * 2 * (DTIM period).
  2960. * The callback is optional and can sleep.
  2961. *
  2962. * @add_chanctx: Notifies device driver about new channel context creation.
  2963. * @remove_chanctx: Notifies device driver about channel context destruction.
  2964. * @change_chanctx: Notifies device driver about channel context changes that
  2965. * may happen when combining different virtual interfaces on the same
  2966. * channel context with different settings
  2967. * @assign_vif_chanctx: Notifies device driver about channel context being bound
  2968. * to vif. Possible use is for hw queue remapping.
  2969. * @unassign_vif_chanctx: Notifies device driver about channel context being
  2970. * unbound from vif.
  2971. * @switch_vif_chanctx: switch a number of vifs from one chanctx to
  2972. * another, as specified in the list of
  2973. * @ieee80211_vif_chanctx_switch passed to the driver, according
  2974. * to the mode defined in &ieee80211_chanctx_switch_mode.
  2975. *
  2976. * @start_ap: Start operation on the AP interface, this is called after all the
  2977. * information in bss_conf is set and beacon can be retrieved. A channel
  2978. * context is bound before this is called. Note that if the driver uses
  2979. * software scan or ROC, this (and @stop_ap) isn't called when the AP is
  2980. * just "paused" for scanning/ROC, which is indicated by the beacon being
  2981. * disabled/enabled via @bss_info_changed.
  2982. * @stop_ap: Stop operation on the AP interface.
  2983. *
  2984. * @reconfig_complete: Called after a call to ieee80211_restart_hw() and
  2985. * during resume, when the reconfiguration has completed.
  2986. * This can help the driver implement the reconfiguration step (and
  2987. * indicate mac80211 is ready to receive frames).
  2988. * This callback may sleep.
  2989. *
  2990. * @ipv6_addr_change: IPv6 address assignment on the given interface changed.
  2991. * Currently, this is only called for managed or P2P client interfaces.
  2992. * This callback is optional; it must not sleep.
  2993. *
  2994. * @channel_switch_beacon: Starts a channel switch to a new channel.
  2995. * Beacons are modified to include CSA or ECSA IEs before calling this
  2996. * function. The corresponding count fields in these IEs must be
  2997. * decremented, and when they reach 1 the driver must call
  2998. * ieee80211_csa_finish(). Drivers which use ieee80211_beacon_get()
  2999. * get the csa counter decremented by mac80211, but must check if it is
  3000. * 1 using ieee80211_csa_is_complete() after the beacon has been
  3001. * transmitted and then call ieee80211_csa_finish().
  3002. * If the CSA count starts as zero or 1, this function will not be called,
  3003. * since there won't be any time to beacon before the switch anyway.
  3004. * @pre_channel_switch: This is an optional callback that is called
  3005. * before a channel switch procedure is started (ie. when a STA
  3006. * gets a CSA or an userspace initiated channel-switch), allowing
  3007. * the driver to prepare for the channel switch.
  3008. * @post_channel_switch: This is an optional callback that is called
  3009. * after a channel switch procedure is completed, allowing the
  3010. * driver to go back to a normal configuration.
  3011. *
  3012. * @join_ibss: Join an IBSS (on an IBSS interface); this is called after all
  3013. * information in bss_conf is set up and the beacon can be retrieved. A
  3014. * channel context is bound before this is called.
  3015. * @leave_ibss: Leave the IBSS again.
  3016. *
  3017. * @get_expected_throughput: extract the expected throughput towards the
  3018. * specified station. The returned value is expressed in Kbps. It returns 0
  3019. * if the RC algorithm does not have proper data to provide.
  3020. *
  3021. * @get_txpower: get current maximum tx power (in dBm) based on configuration
  3022. * and hardware limits.
  3023. *
  3024. * @tdls_channel_switch: Start channel-switching with a TDLS peer. The driver
  3025. * is responsible for continually initiating channel-switching operations
  3026. * and returning to the base channel for communication with the AP. The
  3027. * driver receives a channel-switch request template and the location of
  3028. * the switch-timing IE within the template as part of the invocation.
  3029. * The template is valid only within the call, and the driver can
  3030. * optionally copy the skb for further re-use.
  3031. * @tdls_cancel_channel_switch: Stop channel-switching with a TDLS peer. Both
  3032. * peers must be on the base channel when the call completes.
  3033. * @tdls_recv_channel_switch: a TDLS channel-switch related frame (request or
  3034. * response) has been received from a remote peer. The driver gets
  3035. * parameters parsed from the incoming frame and may use them to continue
  3036. * an ongoing channel-switch operation. In addition, a channel-switch
  3037. * response template is provided, together with the location of the
  3038. * switch-timing IE within the template. The skb can only be used within
  3039. * the function call.
  3040. *
  3041. * @wake_tx_queue: Called when new packets have been added to the queue.
  3042. */
  3043. struct ieee80211_ops {
  3044. void (*tx)(struct ieee80211_hw *hw,
  3045. struct ieee80211_tx_control *control,
  3046. struct sk_buff *skb);
  3047. int (*start)(struct ieee80211_hw *hw);
  3048. void (*stop)(struct ieee80211_hw *hw);
  3049. #ifdef CONFIG_PM
  3050. int (*suspend)(struct ieee80211_hw *hw, struct cfg80211_wowlan *wowlan);
  3051. int (*resume)(struct ieee80211_hw *hw);
  3052. void (*set_wakeup)(struct ieee80211_hw *hw, bool enabled);
  3053. #endif
  3054. int (*add_interface)(struct ieee80211_hw *hw,
  3055. struct ieee80211_vif *vif);
  3056. int (*change_interface)(struct ieee80211_hw *hw,
  3057. struct ieee80211_vif *vif,
  3058. enum nl80211_iftype new_type, bool p2p);
  3059. void (*remove_interface)(struct ieee80211_hw *hw,
  3060. struct ieee80211_vif *vif);
  3061. int (*config)(struct ieee80211_hw *hw, u32 changed);
  3062. void (*bss_info_changed)(struct ieee80211_hw *hw,
  3063. struct ieee80211_vif *vif,
  3064. struct ieee80211_bss_conf *info,
  3065. u32 changed);
  3066. int (*start_ap)(struct ieee80211_hw *hw, struct ieee80211_vif *vif);
  3067. void (*stop_ap)(struct ieee80211_hw *hw, struct ieee80211_vif *vif);
  3068. u64 (*prepare_multicast)(struct ieee80211_hw *hw,
  3069. struct netdev_hw_addr_list *mc_list);
  3070. void (*configure_filter)(struct ieee80211_hw *hw,
  3071. unsigned int changed_flags,
  3072. unsigned int *total_flags,
  3073. u64 multicast);
  3074. int (*set_tim)(struct ieee80211_hw *hw, struct ieee80211_sta *sta,
  3075. bool set);
  3076. int (*set_key)(struct ieee80211_hw *hw, enum set_key_cmd cmd,
  3077. struct ieee80211_vif *vif, struct ieee80211_sta *sta,
  3078. struct ieee80211_key_conf *key);
  3079. void (*update_tkip_key)(struct ieee80211_hw *hw,
  3080. struct ieee80211_vif *vif,
  3081. struct ieee80211_key_conf *conf,
  3082. struct ieee80211_sta *sta,
  3083. u32 iv32, u16 *phase1key);
  3084. void (*set_rekey_data)(struct ieee80211_hw *hw,
  3085. struct ieee80211_vif *vif,
  3086. struct cfg80211_gtk_rekey_data *data);
  3087. void (*set_default_unicast_key)(struct ieee80211_hw *hw,
  3088. struct ieee80211_vif *vif, int idx);
  3089. int (*hw_scan)(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
  3090. struct ieee80211_scan_request *req);
  3091. void (*cancel_hw_scan)(struct ieee80211_hw *hw,
  3092. struct ieee80211_vif *vif);
  3093. int (*sched_scan_start)(struct ieee80211_hw *hw,
  3094. struct ieee80211_vif *vif,
  3095. struct cfg80211_sched_scan_request *req,
  3096. struct ieee80211_scan_ies *ies);
  3097. int (*sched_scan_stop)(struct ieee80211_hw *hw,
  3098. struct ieee80211_vif *vif);
  3099. void (*sw_scan_start)(struct ieee80211_hw *hw,
  3100. struct ieee80211_vif *vif,
  3101. const u8 *mac_addr);
  3102. void (*sw_scan_complete)(struct ieee80211_hw *hw,
  3103. struct ieee80211_vif *vif);
  3104. int (*get_stats)(struct ieee80211_hw *hw,
  3105. struct ieee80211_low_level_stats *stats);
  3106. void (*get_tkip_seq)(struct ieee80211_hw *hw, u8 hw_key_idx,
  3107. u32 *iv32, u16 *iv16);
  3108. int (*set_frag_threshold)(struct ieee80211_hw *hw, u32 value);
  3109. int (*set_rts_threshold)(struct ieee80211_hw *hw, u32 value);
  3110. int (*sta_add)(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
  3111. struct ieee80211_sta *sta);
  3112. int (*sta_remove)(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
  3113. struct ieee80211_sta *sta);
  3114. #ifdef CONFIG_MAC80211_DEBUGFS
  3115. void (*sta_add_debugfs)(struct ieee80211_hw *hw,
  3116. struct ieee80211_vif *vif,
  3117. struct ieee80211_sta *sta,
  3118. struct dentry *dir);
  3119. void (*sta_remove_debugfs)(struct ieee80211_hw *hw,
  3120. struct ieee80211_vif *vif,
  3121. struct ieee80211_sta *sta,
  3122. struct dentry *dir);
  3123. #endif
  3124. void (*sta_notify)(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
  3125. enum sta_notify_cmd, struct ieee80211_sta *sta);
  3126. int (*sta_state)(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
  3127. struct ieee80211_sta *sta,
  3128. enum ieee80211_sta_state old_state,
  3129. enum ieee80211_sta_state new_state);
  3130. void (*sta_pre_rcu_remove)(struct ieee80211_hw *hw,
  3131. struct ieee80211_vif *vif,
  3132. struct ieee80211_sta *sta);
  3133. void (*sta_rc_update)(struct ieee80211_hw *hw,
  3134. struct ieee80211_vif *vif,
  3135. struct ieee80211_sta *sta,
  3136. u32 changed);
  3137. void (*sta_rate_tbl_update)(struct ieee80211_hw *hw,
  3138. struct ieee80211_vif *vif,
  3139. struct ieee80211_sta *sta);
  3140. void (*sta_statistics)(struct ieee80211_hw *hw,
  3141. struct ieee80211_vif *vif,
  3142. struct ieee80211_sta *sta,
  3143. struct station_info *sinfo);
  3144. int (*conf_tx)(struct ieee80211_hw *hw,
  3145. struct ieee80211_vif *vif, u16 ac,
  3146. const struct ieee80211_tx_queue_params *params);
  3147. u64 (*get_tsf)(struct ieee80211_hw *hw, struct ieee80211_vif *vif);
  3148. void (*set_tsf)(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
  3149. u64 tsf);
  3150. void (*reset_tsf)(struct ieee80211_hw *hw, struct ieee80211_vif *vif);
  3151. int (*tx_last_beacon)(struct ieee80211_hw *hw);
  3152. int (*ampdu_action)(struct ieee80211_hw *hw,
  3153. struct ieee80211_vif *vif,
  3154. enum ieee80211_ampdu_mlme_action action,
  3155. struct ieee80211_sta *sta, u16 tid, u16 *ssn,
  3156. u8 buf_size);
  3157. int (*get_survey)(struct ieee80211_hw *hw, int idx,
  3158. struct survey_info *survey);
  3159. void (*rfkill_poll)(struct ieee80211_hw *hw);
  3160. void (*set_coverage_class)(struct ieee80211_hw *hw, s16 coverage_class);
  3161. #ifdef CONFIG_NL80211_TESTMODE
  3162. int (*testmode_cmd)(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
  3163. void *data, int len);
  3164. int (*testmode_dump)(struct ieee80211_hw *hw, struct sk_buff *skb,
  3165. struct netlink_callback *cb,
  3166. void *data, int len);
  3167. #endif
  3168. void (*flush)(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
  3169. u32 queues, bool drop);
  3170. void (*channel_switch)(struct ieee80211_hw *hw,
  3171. struct ieee80211_vif *vif,
  3172. struct ieee80211_channel_switch *ch_switch);
  3173. int (*set_antenna)(struct ieee80211_hw *hw, u32 tx_ant, u32 rx_ant);
  3174. int (*get_antenna)(struct ieee80211_hw *hw, u32 *tx_ant, u32 *rx_ant);
  3175. int (*remain_on_channel)(struct ieee80211_hw *hw,
  3176. struct ieee80211_vif *vif,
  3177. struct ieee80211_channel *chan,
  3178. int duration,
  3179. enum ieee80211_roc_type type);
  3180. int (*cancel_remain_on_channel)(struct ieee80211_hw *hw);
  3181. int (*set_ringparam)(struct ieee80211_hw *hw, u32 tx, u32 rx);
  3182. void (*get_ringparam)(struct ieee80211_hw *hw,
  3183. u32 *tx, u32 *tx_max, u32 *rx, u32 *rx_max);
  3184. bool (*tx_frames_pending)(struct ieee80211_hw *hw);
  3185. int (*set_bitrate_mask)(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
  3186. const struct cfg80211_bitrate_mask *mask);
  3187. void (*event_callback)(struct ieee80211_hw *hw,
  3188. struct ieee80211_vif *vif,
  3189. const struct ieee80211_event *event);
  3190. void (*allow_buffered_frames)(struct ieee80211_hw *hw,
  3191. struct ieee80211_sta *sta,
  3192. u16 tids, int num_frames,
  3193. enum ieee80211_frame_release_type reason,
  3194. bool more_data);
  3195. void (*release_buffered_frames)(struct ieee80211_hw *hw,
  3196. struct ieee80211_sta *sta,
  3197. u16 tids, int num_frames,
  3198. enum ieee80211_frame_release_type reason,
  3199. bool more_data);
  3200. int (*get_et_sset_count)(struct ieee80211_hw *hw,
  3201. struct ieee80211_vif *vif, int sset);
  3202. void (*get_et_stats)(struct ieee80211_hw *hw,
  3203. struct ieee80211_vif *vif,
  3204. struct ethtool_stats *stats, u64 *data);
  3205. void (*get_et_strings)(struct ieee80211_hw *hw,
  3206. struct ieee80211_vif *vif,
  3207. u32 sset, u8 *data);
  3208. void (*mgd_prepare_tx)(struct ieee80211_hw *hw,
  3209. struct ieee80211_vif *vif);
  3210. void (*mgd_protect_tdls_discover)(struct ieee80211_hw *hw,
  3211. struct ieee80211_vif *vif);
  3212. int (*add_chanctx)(struct ieee80211_hw *hw,
  3213. struct ieee80211_chanctx_conf *ctx);
  3214. void (*remove_chanctx)(struct ieee80211_hw *hw,
  3215. struct ieee80211_chanctx_conf *ctx);
  3216. void (*change_chanctx)(struct ieee80211_hw *hw,
  3217. struct ieee80211_chanctx_conf *ctx,
  3218. u32 changed);
  3219. int (*assign_vif_chanctx)(struct ieee80211_hw *hw,
  3220. struct ieee80211_vif *vif,
  3221. struct ieee80211_chanctx_conf *ctx);
  3222. void (*unassign_vif_chanctx)(struct ieee80211_hw *hw,
  3223. struct ieee80211_vif *vif,
  3224. struct ieee80211_chanctx_conf *ctx);
  3225. int (*switch_vif_chanctx)(struct ieee80211_hw *hw,
  3226. struct ieee80211_vif_chanctx_switch *vifs,
  3227. int n_vifs,
  3228. enum ieee80211_chanctx_switch_mode mode);
  3229. void (*reconfig_complete)(struct ieee80211_hw *hw,
  3230. enum ieee80211_reconfig_type reconfig_type);
  3231. #if IS_ENABLED(CONFIG_IPV6)
  3232. void (*ipv6_addr_change)(struct ieee80211_hw *hw,
  3233. struct ieee80211_vif *vif,
  3234. struct inet6_dev *idev);
  3235. #endif
  3236. void (*channel_switch_beacon)(struct ieee80211_hw *hw,
  3237. struct ieee80211_vif *vif,
  3238. struct cfg80211_chan_def *chandef);
  3239. int (*pre_channel_switch)(struct ieee80211_hw *hw,
  3240. struct ieee80211_vif *vif,
  3241. struct ieee80211_channel_switch *ch_switch);
  3242. int (*post_channel_switch)(struct ieee80211_hw *hw,
  3243. struct ieee80211_vif *vif);
  3244. int (*join_ibss)(struct ieee80211_hw *hw, struct ieee80211_vif *vif);
  3245. void (*leave_ibss)(struct ieee80211_hw *hw, struct ieee80211_vif *vif);
  3246. u32 (*get_expected_throughput)(struct ieee80211_sta *sta);
  3247. int (*get_txpower)(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
  3248. int *dbm);
  3249. int (*tdls_channel_switch)(struct ieee80211_hw *hw,
  3250. struct ieee80211_vif *vif,
  3251. struct ieee80211_sta *sta, u8 oper_class,
  3252. struct cfg80211_chan_def *chandef,
  3253. struct sk_buff *tmpl_skb, u32 ch_sw_tm_ie);
  3254. void (*tdls_cancel_channel_switch)(struct ieee80211_hw *hw,
  3255. struct ieee80211_vif *vif,
  3256. struct ieee80211_sta *sta);
  3257. void (*tdls_recv_channel_switch)(struct ieee80211_hw *hw,
  3258. struct ieee80211_vif *vif,
  3259. struct ieee80211_tdls_ch_sw_params *params);
  3260. void (*wake_tx_queue)(struct ieee80211_hw *hw,
  3261. struct ieee80211_txq *txq);
  3262. };
  3263. /**
  3264. * ieee80211_alloc_hw_nm - Allocate a new hardware device
  3265. *
  3266. * This must be called once for each hardware device. The returned pointer
  3267. * must be used to refer to this device when calling other functions.
  3268. * mac80211 allocates a private data area for the driver pointed to by
  3269. * @priv in &struct ieee80211_hw, the size of this area is given as
  3270. * @priv_data_len.
  3271. *
  3272. * @priv_data_len: length of private data
  3273. * @ops: callbacks for this device
  3274. * @requested_name: Requested name for this device.
  3275. * NULL is valid value, and means use the default naming (phy%d)
  3276. *
  3277. * Return: A pointer to the new hardware device, or %NULL on error.
  3278. */
  3279. struct ieee80211_hw *ieee80211_alloc_hw_nm(size_t priv_data_len,
  3280. const struct ieee80211_ops *ops,
  3281. const char *requested_name);
  3282. /**
  3283. * ieee80211_alloc_hw - Allocate a new hardware device
  3284. *
  3285. * This must be called once for each hardware device. The returned pointer
  3286. * must be used to refer to this device when calling other functions.
  3287. * mac80211 allocates a private data area for the driver pointed to by
  3288. * @priv in &struct ieee80211_hw, the size of this area is given as
  3289. * @priv_data_len.
  3290. *
  3291. * @priv_data_len: length of private data
  3292. * @ops: callbacks for this device
  3293. *
  3294. * Return: A pointer to the new hardware device, or %NULL on error.
  3295. */
  3296. static inline
  3297. struct ieee80211_hw *ieee80211_alloc_hw(size_t priv_data_len,
  3298. const struct ieee80211_ops *ops)
  3299. {
  3300. return ieee80211_alloc_hw_nm(priv_data_len, ops, NULL);
  3301. }
  3302. /**
  3303. * ieee80211_register_hw - Register hardware device
  3304. *
  3305. * You must call this function before any other functions in
  3306. * mac80211. Note that before a hardware can be registered, you
  3307. * need to fill the contained wiphy's information.
  3308. *
  3309. * @hw: the device to register as returned by ieee80211_alloc_hw()
  3310. *
  3311. * Return: 0 on success. An error code otherwise.
  3312. */
  3313. int ieee80211_register_hw(struct ieee80211_hw *hw);
  3314. /**
  3315. * struct ieee80211_tpt_blink - throughput blink description
  3316. * @throughput: throughput in Kbit/sec
  3317. * @blink_time: blink time in milliseconds
  3318. * (full cycle, ie. one off + one on period)
  3319. */
  3320. struct ieee80211_tpt_blink {
  3321. int throughput;
  3322. int blink_time;
  3323. };
  3324. /**
  3325. * enum ieee80211_tpt_led_trigger_flags - throughput trigger flags
  3326. * @IEEE80211_TPT_LEDTRIG_FL_RADIO: enable blinking with radio
  3327. * @IEEE80211_TPT_LEDTRIG_FL_WORK: enable blinking when working
  3328. * @IEEE80211_TPT_LEDTRIG_FL_CONNECTED: enable blinking when at least one
  3329. * interface is connected in some way, including being an AP
  3330. */
  3331. enum ieee80211_tpt_led_trigger_flags {
  3332. IEEE80211_TPT_LEDTRIG_FL_RADIO = BIT(0),
  3333. IEEE80211_TPT_LEDTRIG_FL_WORK = BIT(1),
  3334. IEEE80211_TPT_LEDTRIG_FL_CONNECTED = BIT(2),
  3335. };
  3336. #ifdef CONFIG_MAC80211_LEDS
  3337. char *__ieee80211_get_tx_led_name(struct ieee80211_hw *hw);
  3338. char *__ieee80211_get_rx_led_name(struct ieee80211_hw *hw);
  3339. char *__ieee80211_get_assoc_led_name(struct ieee80211_hw *hw);
  3340. char *__ieee80211_get_radio_led_name(struct ieee80211_hw *hw);
  3341. char *__ieee80211_create_tpt_led_trigger(struct ieee80211_hw *hw,
  3342. unsigned int flags,
  3343. const struct ieee80211_tpt_blink *blink_table,
  3344. unsigned int blink_table_len);
  3345. #endif
  3346. /**
  3347. * ieee80211_get_tx_led_name - get name of TX LED
  3348. *
  3349. * mac80211 creates a transmit LED trigger for each wireless hardware
  3350. * that can be used to drive LEDs if your driver registers a LED device.
  3351. * This function returns the name (or %NULL if not configured for LEDs)
  3352. * of the trigger so you can automatically link the LED device.
  3353. *
  3354. * @hw: the hardware to get the LED trigger name for
  3355. *
  3356. * Return: The name of the LED trigger. %NULL if not configured for LEDs.
  3357. */
  3358. static inline char *ieee80211_get_tx_led_name(struct ieee80211_hw *hw)
  3359. {
  3360. #ifdef CONFIG_MAC80211_LEDS
  3361. return __ieee80211_get_tx_led_name(hw);
  3362. #else
  3363. return NULL;
  3364. #endif
  3365. }
  3366. /**
  3367. * ieee80211_get_rx_led_name - get name of RX LED
  3368. *
  3369. * mac80211 creates a receive LED trigger for each wireless hardware
  3370. * that can be used to drive LEDs if your driver registers a LED device.
  3371. * This function returns the name (or %NULL if not configured for LEDs)
  3372. * of the trigger so you can automatically link the LED device.
  3373. *
  3374. * @hw: the hardware to get the LED trigger name for
  3375. *
  3376. * Return: The name of the LED trigger. %NULL if not configured for LEDs.
  3377. */
  3378. static inline char *ieee80211_get_rx_led_name(struct ieee80211_hw *hw)
  3379. {
  3380. #ifdef CONFIG_MAC80211_LEDS
  3381. return __ieee80211_get_rx_led_name(hw);
  3382. #else
  3383. return NULL;
  3384. #endif
  3385. }
  3386. /**
  3387. * ieee80211_get_assoc_led_name - get name of association LED
  3388. *
  3389. * mac80211 creates a association LED trigger for each wireless hardware
  3390. * that can be used to drive LEDs if your driver registers a LED device.
  3391. * This function returns the name (or %NULL if not configured for LEDs)
  3392. * of the trigger so you can automatically link the LED device.
  3393. *
  3394. * @hw: the hardware to get the LED trigger name for
  3395. *
  3396. * Return: The name of the LED trigger. %NULL if not configured for LEDs.
  3397. */
  3398. static inline char *ieee80211_get_assoc_led_name(struct ieee80211_hw *hw)
  3399. {
  3400. #ifdef CONFIG_MAC80211_LEDS
  3401. return __ieee80211_get_assoc_led_name(hw);
  3402. #else
  3403. return NULL;
  3404. #endif
  3405. }
  3406. /**
  3407. * ieee80211_get_radio_led_name - get name of radio LED
  3408. *
  3409. * mac80211 creates a radio change LED trigger for each wireless hardware
  3410. * that can be used to drive LEDs if your driver registers a LED device.
  3411. * This function returns the name (or %NULL if not configured for LEDs)
  3412. * of the trigger so you can automatically link the LED device.
  3413. *
  3414. * @hw: the hardware to get the LED trigger name for
  3415. *
  3416. * Return: The name of the LED trigger. %NULL if not configured for LEDs.
  3417. */
  3418. static inline char *ieee80211_get_radio_led_name(struct ieee80211_hw *hw)
  3419. {
  3420. #ifdef CONFIG_MAC80211_LEDS
  3421. return __ieee80211_get_radio_led_name(hw);
  3422. #else
  3423. return NULL;
  3424. #endif
  3425. }
  3426. /**
  3427. * ieee80211_create_tpt_led_trigger - create throughput LED trigger
  3428. * @hw: the hardware to create the trigger for
  3429. * @flags: trigger flags, see &enum ieee80211_tpt_led_trigger_flags
  3430. * @blink_table: the blink table -- needs to be ordered by throughput
  3431. * @blink_table_len: size of the blink table
  3432. *
  3433. * Return: %NULL (in case of error, or if no LED triggers are
  3434. * configured) or the name of the new trigger.
  3435. *
  3436. * Note: This function must be called before ieee80211_register_hw().
  3437. */
  3438. static inline char *
  3439. ieee80211_create_tpt_led_trigger(struct ieee80211_hw *hw, unsigned int flags,
  3440. const struct ieee80211_tpt_blink *blink_table,
  3441. unsigned int blink_table_len)
  3442. {
  3443. #ifdef CONFIG_MAC80211_LEDS
  3444. return __ieee80211_create_tpt_led_trigger(hw, flags, blink_table,
  3445. blink_table_len);
  3446. #else
  3447. return NULL;
  3448. #endif
  3449. }
  3450. /**
  3451. * ieee80211_unregister_hw - Unregister a hardware device
  3452. *
  3453. * This function instructs mac80211 to free allocated resources
  3454. * and unregister netdevices from the networking subsystem.
  3455. *
  3456. * @hw: the hardware to unregister
  3457. */
  3458. void ieee80211_unregister_hw(struct ieee80211_hw *hw);
  3459. /**
  3460. * ieee80211_free_hw - free hardware descriptor
  3461. *
  3462. * This function frees everything that was allocated, including the
  3463. * private data for the driver. You must call ieee80211_unregister_hw()
  3464. * before calling this function.
  3465. *
  3466. * @hw: the hardware to free
  3467. */
  3468. void ieee80211_free_hw(struct ieee80211_hw *hw);
  3469. /**
  3470. * ieee80211_restart_hw - restart hardware completely
  3471. *
  3472. * Call this function when the hardware was restarted for some reason
  3473. * (hardware error, ...) and the driver is unable to restore its state
  3474. * by itself. mac80211 assumes that at this point the driver/hardware
  3475. * is completely uninitialised and stopped, it starts the process by
  3476. * calling the ->start() operation. The driver will need to reset all
  3477. * internal state that it has prior to calling this function.
  3478. *
  3479. * @hw: the hardware to restart
  3480. */
  3481. void ieee80211_restart_hw(struct ieee80211_hw *hw);
  3482. /**
  3483. * ieee80211_napi_add - initialize mac80211 NAPI context
  3484. * @hw: the hardware to initialize the NAPI context on
  3485. * @napi: the NAPI context to initialize
  3486. * @napi_dev: dummy NAPI netdevice, here to not waste the space if the
  3487. * driver doesn't use NAPI
  3488. * @poll: poll function
  3489. * @weight: default weight
  3490. *
  3491. * See also netif_napi_add().
  3492. */
  3493. void ieee80211_napi_add(struct ieee80211_hw *hw, struct napi_struct *napi,
  3494. struct net_device *napi_dev,
  3495. int (*poll)(struct napi_struct *, int),
  3496. int weight);
  3497. /**
  3498. * ieee80211_rx - receive frame
  3499. *
  3500. * Use this function to hand received frames to mac80211. The receive
  3501. * buffer in @skb must start with an IEEE 802.11 header. In case of a
  3502. * paged @skb is used, the driver is recommended to put the ieee80211
  3503. * header of the frame on the linear part of the @skb to avoid memory
  3504. * allocation and/or memcpy by the stack.
  3505. *
  3506. * This function may not be called in IRQ context. Calls to this function
  3507. * for a single hardware must be synchronized against each other. Calls to
  3508. * this function, ieee80211_rx_ni() and ieee80211_rx_irqsafe() may not be
  3509. * mixed for a single hardware. Must not run concurrently with
  3510. * ieee80211_tx_status() or ieee80211_tx_status_ni().
  3511. *
  3512. * In process context use instead ieee80211_rx_ni().
  3513. *
  3514. * @hw: the hardware this frame came in on
  3515. * @skb: the buffer to receive, owned by mac80211 after this call
  3516. */
  3517. void ieee80211_rx(struct ieee80211_hw *hw, struct sk_buff *skb);
  3518. /**
  3519. * ieee80211_rx_irqsafe - receive frame
  3520. *
  3521. * Like ieee80211_rx() but can be called in IRQ context
  3522. * (internally defers to a tasklet.)
  3523. *
  3524. * Calls to this function, ieee80211_rx() or ieee80211_rx_ni() may not
  3525. * be mixed for a single hardware.Must not run concurrently with
  3526. * ieee80211_tx_status() or ieee80211_tx_status_ni().
  3527. *
  3528. * @hw: the hardware this frame came in on
  3529. * @skb: the buffer to receive, owned by mac80211 after this call
  3530. */
  3531. void ieee80211_rx_irqsafe(struct ieee80211_hw *hw, struct sk_buff *skb);
  3532. /**
  3533. * ieee80211_rx_ni - receive frame (in process context)
  3534. *
  3535. * Like ieee80211_rx() but can be called in process context
  3536. * (internally disables bottom halves).
  3537. *
  3538. * Calls to this function, ieee80211_rx() and ieee80211_rx_irqsafe() may
  3539. * not be mixed for a single hardware. Must not run concurrently with
  3540. * ieee80211_tx_status() or ieee80211_tx_status_ni().
  3541. *
  3542. * @hw: the hardware this frame came in on
  3543. * @skb: the buffer to receive, owned by mac80211 after this call
  3544. */
  3545. static inline void ieee80211_rx_ni(struct ieee80211_hw *hw,
  3546. struct sk_buff *skb)
  3547. {
  3548. local_bh_disable();
  3549. ieee80211_rx(hw, skb);
  3550. local_bh_enable();
  3551. }
  3552. /**
  3553. * ieee80211_sta_ps_transition - PS transition for connected sta
  3554. *
  3555. * When operating in AP mode with the %IEEE80211_HW_AP_LINK_PS
  3556. * flag set, use this function to inform mac80211 about a connected station
  3557. * entering/leaving PS mode.
  3558. *
  3559. * This function may not be called in IRQ context or with softirqs enabled.
  3560. *
  3561. * Calls to this function for a single hardware must be synchronized against
  3562. * each other.
  3563. *
  3564. * @sta: currently connected sta
  3565. * @start: start or stop PS
  3566. *
  3567. * Return: 0 on success. -EINVAL when the requested PS mode is already set.
  3568. */
  3569. int ieee80211_sta_ps_transition(struct ieee80211_sta *sta, bool start);
  3570. /**
  3571. * ieee80211_sta_ps_transition_ni - PS transition for connected sta
  3572. * (in process context)
  3573. *
  3574. * Like ieee80211_sta_ps_transition() but can be called in process context
  3575. * (internally disables bottom halves). Concurrent call restriction still
  3576. * applies.
  3577. *
  3578. * @sta: currently connected sta
  3579. * @start: start or stop PS
  3580. *
  3581. * Return: Like ieee80211_sta_ps_transition().
  3582. */
  3583. static inline int ieee80211_sta_ps_transition_ni(struct ieee80211_sta *sta,
  3584. bool start)
  3585. {
  3586. int ret;
  3587. local_bh_disable();
  3588. ret = ieee80211_sta_ps_transition(sta, start);
  3589. local_bh_enable();
  3590. return ret;
  3591. }
  3592. /*
  3593. * The TX headroom reserved by mac80211 for its own tx_status functions.
  3594. * This is enough for the radiotap header.
  3595. */
  3596. #define IEEE80211_TX_STATUS_HEADROOM 14
  3597. /**
  3598. * ieee80211_sta_set_buffered - inform mac80211 about driver-buffered frames
  3599. * @sta: &struct ieee80211_sta pointer for the sleeping station
  3600. * @tid: the TID that has buffered frames
  3601. * @buffered: indicates whether or not frames are buffered for this TID
  3602. *
  3603. * If a driver buffers frames for a powersave station instead of passing
  3604. * them back to mac80211 for retransmission, the station may still need
  3605. * to be told that there are buffered frames via the TIM bit.
  3606. *
  3607. * This function informs mac80211 whether or not there are frames that are
  3608. * buffered in the driver for a given TID; mac80211 can then use this data
  3609. * to set the TIM bit (NOTE: This may call back into the driver's set_tim
  3610. * call! Beware of the locking!)
  3611. *
  3612. * If all frames are released to the station (due to PS-poll or uAPSD)
  3613. * then the driver needs to inform mac80211 that there no longer are
  3614. * frames buffered. However, when the station wakes up mac80211 assumes
  3615. * that all buffered frames will be transmitted and clears this data,
  3616. * drivers need to make sure they inform mac80211 about all buffered
  3617. * frames on the sleep transition (sta_notify() with %STA_NOTIFY_SLEEP).
  3618. *
  3619. * Note that technically mac80211 only needs to know this per AC, not per
  3620. * TID, but since driver buffering will inevitably happen per TID (since
  3621. * it is related to aggregation) it is easier to make mac80211 map the
  3622. * TID to the AC as required instead of keeping track in all drivers that
  3623. * use this API.
  3624. */
  3625. void ieee80211_sta_set_buffered(struct ieee80211_sta *sta,
  3626. u8 tid, bool buffered);
  3627. /**
  3628. * ieee80211_get_tx_rates - get the selected transmit rates for a packet
  3629. *
  3630. * Call this function in a driver with per-packet rate selection support
  3631. * to combine the rate info in the packet tx info with the most recent
  3632. * rate selection table for the station entry.
  3633. *
  3634. * @vif: &struct ieee80211_vif pointer from the add_interface callback.
  3635. * @sta: the receiver station to which this packet is sent.
  3636. * @skb: the frame to be transmitted.
  3637. * @dest: buffer for extracted rate/retry information
  3638. * @max_rates: maximum number of rates to fetch
  3639. */
  3640. void ieee80211_get_tx_rates(struct ieee80211_vif *vif,
  3641. struct ieee80211_sta *sta,
  3642. struct sk_buff *skb,
  3643. struct ieee80211_tx_rate *dest,
  3644. int max_rates);
  3645. /**
  3646. * ieee80211_tx_status - transmit status callback
  3647. *
  3648. * Call this function for all transmitted frames after they have been
  3649. * transmitted. It is permissible to not call this function for
  3650. * multicast frames but this can affect statistics.
  3651. *
  3652. * This function may not be called in IRQ context. Calls to this function
  3653. * for a single hardware must be synchronized against each other. Calls
  3654. * to this function, ieee80211_tx_status_ni() and ieee80211_tx_status_irqsafe()
  3655. * may not be mixed for a single hardware. Must not run concurrently with
  3656. * ieee80211_rx() or ieee80211_rx_ni().
  3657. *
  3658. * @hw: the hardware the frame was transmitted by
  3659. * @skb: the frame that was transmitted, owned by mac80211 after this call
  3660. */
  3661. void ieee80211_tx_status(struct ieee80211_hw *hw,
  3662. struct sk_buff *skb);
  3663. /**
  3664. * ieee80211_tx_status_noskb - transmit status callback without skb
  3665. *
  3666. * This function can be used as a replacement for ieee80211_tx_status
  3667. * in drivers that cannot reliably map tx status information back to
  3668. * specific skbs.
  3669. *
  3670. * Calls to this function for a single hardware must be synchronized
  3671. * against each other. Calls to this function, ieee80211_tx_status_ni()
  3672. * and ieee80211_tx_status_irqsafe() may not be mixed for a single hardware.
  3673. *
  3674. * @hw: the hardware the frame was transmitted by
  3675. * @sta: the receiver station to which this packet is sent
  3676. * (NULL for multicast packets)
  3677. * @info: tx status information
  3678. */
  3679. void ieee80211_tx_status_noskb(struct ieee80211_hw *hw,
  3680. struct ieee80211_sta *sta,
  3681. struct ieee80211_tx_info *info);
  3682. /**
  3683. * ieee80211_tx_status_ni - transmit status callback (in process context)
  3684. *
  3685. * Like ieee80211_tx_status() but can be called in process context.
  3686. *
  3687. * Calls to this function, ieee80211_tx_status() and
  3688. * ieee80211_tx_status_irqsafe() may not be mixed
  3689. * for a single hardware.
  3690. *
  3691. * @hw: the hardware the frame was transmitted by
  3692. * @skb: the frame that was transmitted, owned by mac80211 after this call
  3693. */
  3694. static inline void ieee80211_tx_status_ni(struct ieee80211_hw *hw,
  3695. struct sk_buff *skb)
  3696. {
  3697. local_bh_disable();
  3698. ieee80211_tx_status(hw, skb);
  3699. local_bh_enable();
  3700. }
  3701. /**
  3702. * ieee80211_tx_status_irqsafe - IRQ-safe transmit status callback
  3703. *
  3704. * Like ieee80211_tx_status() but can be called in IRQ context
  3705. * (internally defers to a tasklet.)
  3706. *
  3707. * Calls to this function, ieee80211_tx_status() and
  3708. * ieee80211_tx_status_ni() may not be mixed for a single hardware.
  3709. *
  3710. * @hw: the hardware the frame was transmitted by
  3711. * @skb: the frame that was transmitted, owned by mac80211 after this call
  3712. */
  3713. void ieee80211_tx_status_irqsafe(struct ieee80211_hw *hw,
  3714. struct sk_buff *skb);
  3715. /**
  3716. * ieee80211_report_low_ack - report non-responding station
  3717. *
  3718. * When operating in AP-mode, call this function to report a non-responding
  3719. * connected STA.
  3720. *
  3721. * @sta: the non-responding connected sta
  3722. * @num_packets: number of packets sent to @sta without a response
  3723. */
  3724. void ieee80211_report_low_ack(struct ieee80211_sta *sta, u32 num_packets);
  3725. #define IEEE80211_MAX_CSA_COUNTERS_NUM 2
  3726. /**
  3727. * struct ieee80211_mutable_offsets - mutable beacon offsets
  3728. * @tim_offset: position of TIM element
  3729. * @tim_length: size of TIM element
  3730. * @csa_counter_offs: array of IEEE80211_MAX_CSA_COUNTERS_NUM offsets
  3731. * to CSA counters. This array can contain zero values which
  3732. * should be ignored.
  3733. */
  3734. struct ieee80211_mutable_offsets {
  3735. u16 tim_offset;
  3736. u16 tim_length;
  3737. u16 csa_counter_offs[IEEE80211_MAX_CSA_COUNTERS_NUM];
  3738. };
  3739. /**
  3740. * ieee80211_beacon_get_template - beacon template generation function
  3741. * @hw: pointer obtained from ieee80211_alloc_hw().
  3742. * @vif: &struct ieee80211_vif pointer from the add_interface callback.
  3743. * @offs: &struct ieee80211_mutable_offsets pointer to struct that will
  3744. * receive the offsets that may be updated by the driver.
  3745. *
  3746. * If the driver implements beaconing modes, it must use this function to
  3747. * obtain the beacon template.
  3748. *
  3749. * This function should be used if the beacon frames are generated by the
  3750. * device, and then the driver must use the returned beacon as the template
  3751. * The driver or the device are responsible to update the DTIM and, when
  3752. * applicable, the CSA count.
  3753. *
  3754. * The driver is responsible for freeing the returned skb.
  3755. *
  3756. * Return: The beacon template. %NULL on error.
  3757. */
  3758. struct sk_buff *
  3759. ieee80211_beacon_get_template(struct ieee80211_hw *hw,
  3760. struct ieee80211_vif *vif,
  3761. struct ieee80211_mutable_offsets *offs);
  3762. /**
  3763. * ieee80211_beacon_get_tim - beacon generation function
  3764. * @hw: pointer obtained from ieee80211_alloc_hw().
  3765. * @vif: &struct ieee80211_vif pointer from the add_interface callback.
  3766. * @tim_offset: pointer to variable that will receive the TIM IE offset.
  3767. * Set to 0 if invalid (in non-AP modes).
  3768. * @tim_length: pointer to variable that will receive the TIM IE length,
  3769. * (including the ID and length bytes!).
  3770. * Set to 0 if invalid (in non-AP modes).
  3771. *
  3772. * If the driver implements beaconing modes, it must use this function to
  3773. * obtain the beacon frame.
  3774. *
  3775. * If the beacon frames are generated by the host system (i.e., not in
  3776. * hardware/firmware), the driver uses this function to get each beacon
  3777. * frame from mac80211 -- it is responsible for calling this function exactly
  3778. * once before the beacon is needed (e.g. based on hardware interrupt).
  3779. *
  3780. * The driver is responsible for freeing the returned skb.
  3781. *
  3782. * Return: The beacon template. %NULL on error.
  3783. */
  3784. struct sk_buff *ieee80211_beacon_get_tim(struct ieee80211_hw *hw,
  3785. struct ieee80211_vif *vif,
  3786. u16 *tim_offset, u16 *tim_length);
  3787. /**
  3788. * ieee80211_beacon_get - beacon generation function
  3789. * @hw: pointer obtained from ieee80211_alloc_hw().
  3790. * @vif: &struct ieee80211_vif pointer from the add_interface callback.
  3791. *
  3792. * See ieee80211_beacon_get_tim().
  3793. *
  3794. * Return: See ieee80211_beacon_get_tim().
  3795. */
  3796. static inline struct sk_buff *ieee80211_beacon_get(struct ieee80211_hw *hw,
  3797. struct ieee80211_vif *vif)
  3798. {
  3799. return ieee80211_beacon_get_tim(hw, vif, NULL, NULL);
  3800. }
  3801. /**
  3802. * ieee80211_csa_update_counter - request mac80211 to decrement the csa counter
  3803. * @vif: &struct ieee80211_vif pointer from the add_interface callback.
  3804. *
  3805. * The csa counter should be updated after each beacon transmission.
  3806. * This function is called implicitly when
  3807. * ieee80211_beacon_get/ieee80211_beacon_get_tim are called, however if the
  3808. * beacon frames are generated by the device, the driver should call this
  3809. * function after each beacon transmission to sync mac80211's csa counters.
  3810. *
  3811. * Return: new csa counter value
  3812. */
  3813. u8 ieee80211_csa_update_counter(struct ieee80211_vif *vif);
  3814. /**
  3815. * ieee80211_csa_finish - notify mac80211 about channel switch
  3816. * @vif: &struct ieee80211_vif pointer from the add_interface callback.
  3817. *
  3818. * After a channel switch announcement was scheduled and the counter in this
  3819. * announcement hits 1, this function must be called by the driver to
  3820. * notify mac80211 that the channel can be changed.
  3821. */
  3822. void ieee80211_csa_finish(struct ieee80211_vif *vif);
  3823. /**
  3824. * ieee80211_csa_is_complete - find out if counters reached 1
  3825. * @vif: &struct ieee80211_vif pointer from the add_interface callback.
  3826. *
  3827. * This function returns whether the channel switch counters reached zero.
  3828. */
  3829. bool ieee80211_csa_is_complete(struct ieee80211_vif *vif);
  3830. /**
  3831. * ieee80211_proberesp_get - retrieve a Probe Response template
  3832. * @hw: pointer obtained from ieee80211_alloc_hw().
  3833. * @vif: &struct ieee80211_vif pointer from the add_interface callback.
  3834. *
  3835. * Creates a Probe Response template which can, for example, be uploaded to
  3836. * hardware. The destination address should be set by the caller.
  3837. *
  3838. * Can only be called in AP mode.
  3839. *
  3840. * Return: The Probe Response template. %NULL on error.
  3841. */
  3842. struct sk_buff *ieee80211_proberesp_get(struct ieee80211_hw *hw,
  3843. struct ieee80211_vif *vif);
  3844. /**
  3845. * ieee80211_pspoll_get - retrieve a PS Poll template
  3846. * @hw: pointer obtained from ieee80211_alloc_hw().
  3847. * @vif: &struct ieee80211_vif pointer from the add_interface callback.
  3848. *
  3849. * Creates a PS Poll a template which can, for example, uploaded to
  3850. * hardware. The template must be updated after association so that correct
  3851. * AID, BSSID and MAC address is used.
  3852. *
  3853. * Note: Caller (or hardware) is responsible for setting the
  3854. * &IEEE80211_FCTL_PM bit.
  3855. *
  3856. * Return: The PS Poll template. %NULL on error.
  3857. */
  3858. struct sk_buff *ieee80211_pspoll_get(struct ieee80211_hw *hw,
  3859. struct ieee80211_vif *vif);
  3860. /**
  3861. * ieee80211_nullfunc_get - retrieve a nullfunc template
  3862. * @hw: pointer obtained from ieee80211_alloc_hw().
  3863. * @vif: &struct ieee80211_vif pointer from the add_interface callback.
  3864. *
  3865. * Creates a Nullfunc template which can, for example, uploaded to
  3866. * hardware. The template must be updated after association so that correct
  3867. * BSSID and address is used.
  3868. *
  3869. * Note: Caller (or hardware) is responsible for setting the
  3870. * &IEEE80211_FCTL_PM bit as well as Duration and Sequence Control fields.
  3871. *
  3872. * Return: The nullfunc template. %NULL on error.
  3873. */
  3874. struct sk_buff *ieee80211_nullfunc_get(struct ieee80211_hw *hw,
  3875. struct ieee80211_vif *vif);
  3876. /**
  3877. * ieee80211_probereq_get - retrieve a Probe Request template
  3878. * @hw: pointer obtained from ieee80211_alloc_hw().
  3879. * @src_addr: source MAC address
  3880. * @ssid: SSID buffer
  3881. * @ssid_len: length of SSID
  3882. * @tailroom: tailroom to reserve at end of SKB for IEs
  3883. *
  3884. * Creates a Probe Request template which can, for example, be uploaded to
  3885. * hardware.
  3886. *
  3887. * Return: The Probe Request template. %NULL on error.
  3888. */
  3889. struct sk_buff *ieee80211_probereq_get(struct ieee80211_hw *hw,
  3890. const u8 *src_addr,
  3891. const u8 *ssid, size_t ssid_len,
  3892. size_t tailroom);
  3893. /**
  3894. * ieee80211_rts_get - RTS frame generation function
  3895. * @hw: pointer obtained from ieee80211_alloc_hw().
  3896. * @vif: &struct ieee80211_vif pointer from the add_interface callback.
  3897. * @frame: pointer to the frame that is going to be protected by the RTS.
  3898. * @frame_len: the frame length (in octets).
  3899. * @frame_txctl: &struct ieee80211_tx_info of the frame.
  3900. * @rts: The buffer where to store the RTS frame.
  3901. *
  3902. * If the RTS frames are generated by the host system (i.e., not in
  3903. * hardware/firmware), the low-level driver uses this function to receive
  3904. * the next RTS frame from the 802.11 code. The low-level is responsible
  3905. * for calling this function before and RTS frame is needed.
  3906. */
  3907. void ieee80211_rts_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
  3908. const void *frame, size_t frame_len,
  3909. const struct ieee80211_tx_info *frame_txctl,
  3910. struct ieee80211_rts *rts);
  3911. /**
  3912. * ieee80211_rts_duration - Get the duration field for an RTS frame
  3913. * @hw: pointer obtained from ieee80211_alloc_hw().
  3914. * @vif: &struct ieee80211_vif pointer from the add_interface callback.
  3915. * @frame_len: the length of the frame that is going to be protected by the RTS.
  3916. * @frame_txctl: &struct ieee80211_tx_info of the frame.
  3917. *
  3918. * If the RTS is generated in firmware, but the host system must provide
  3919. * the duration field, the low-level driver uses this function to receive
  3920. * the duration field value in little-endian byteorder.
  3921. *
  3922. * Return: The duration.
  3923. */
  3924. __le16 ieee80211_rts_duration(struct ieee80211_hw *hw,
  3925. struct ieee80211_vif *vif, size_t frame_len,
  3926. const struct ieee80211_tx_info *frame_txctl);
  3927. /**
  3928. * ieee80211_ctstoself_get - CTS-to-self frame generation function
  3929. * @hw: pointer obtained from ieee80211_alloc_hw().
  3930. * @vif: &struct ieee80211_vif pointer from the add_interface callback.
  3931. * @frame: pointer to the frame that is going to be protected by the CTS-to-self.
  3932. * @frame_len: the frame length (in octets).
  3933. * @frame_txctl: &struct ieee80211_tx_info of the frame.
  3934. * @cts: The buffer where to store the CTS-to-self frame.
  3935. *
  3936. * If the CTS-to-self frames are generated by the host system (i.e., not in
  3937. * hardware/firmware), the low-level driver uses this function to receive
  3938. * the next CTS-to-self frame from the 802.11 code. The low-level is responsible
  3939. * for calling this function before and CTS-to-self frame is needed.
  3940. */
  3941. void ieee80211_ctstoself_get(struct ieee80211_hw *hw,
  3942. struct ieee80211_vif *vif,
  3943. const void *frame, size_t frame_len,
  3944. const struct ieee80211_tx_info *frame_txctl,
  3945. struct ieee80211_cts *cts);
  3946. /**
  3947. * ieee80211_ctstoself_duration - Get the duration field for a CTS-to-self frame
  3948. * @hw: pointer obtained from ieee80211_alloc_hw().
  3949. * @vif: &struct ieee80211_vif pointer from the add_interface callback.
  3950. * @frame_len: the length of the frame that is going to be protected by the CTS-to-self.
  3951. * @frame_txctl: &struct ieee80211_tx_info of the frame.
  3952. *
  3953. * If the CTS-to-self is generated in firmware, but the host system must provide
  3954. * the duration field, the low-level driver uses this function to receive
  3955. * the duration field value in little-endian byteorder.
  3956. *
  3957. * Return: The duration.
  3958. */
  3959. __le16 ieee80211_ctstoself_duration(struct ieee80211_hw *hw,
  3960. struct ieee80211_vif *vif,
  3961. size_t frame_len,
  3962. const struct ieee80211_tx_info *frame_txctl);
  3963. /**
  3964. * ieee80211_generic_frame_duration - Calculate the duration field for a frame
  3965. * @hw: pointer obtained from ieee80211_alloc_hw().
  3966. * @vif: &struct ieee80211_vif pointer from the add_interface callback.
  3967. * @band: the band to calculate the frame duration on
  3968. * @frame_len: the length of the frame.
  3969. * @rate: the rate at which the frame is going to be transmitted.
  3970. *
  3971. * Calculate the duration field of some generic frame, given its
  3972. * length and transmission rate (in 100kbps).
  3973. *
  3974. * Return: The duration.
  3975. */
  3976. __le16 ieee80211_generic_frame_duration(struct ieee80211_hw *hw,
  3977. struct ieee80211_vif *vif,
  3978. enum ieee80211_band band,
  3979. size_t frame_len,
  3980. struct ieee80211_rate *rate);
  3981. /**
  3982. * ieee80211_get_buffered_bc - accessing buffered broadcast and multicast frames
  3983. * @hw: pointer as obtained from ieee80211_alloc_hw().
  3984. * @vif: &struct ieee80211_vif pointer from the add_interface callback.
  3985. *
  3986. * Function for accessing buffered broadcast and multicast frames. If
  3987. * hardware/firmware does not implement buffering of broadcast/multicast
  3988. * frames when power saving is used, 802.11 code buffers them in the host
  3989. * memory. The low-level driver uses this function to fetch next buffered
  3990. * frame. In most cases, this is used when generating beacon frame.
  3991. *
  3992. * Return: A pointer to the next buffered skb or NULL if no more buffered
  3993. * frames are available.
  3994. *
  3995. * Note: buffered frames are returned only after DTIM beacon frame was
  3996. * generated with ieee80211_beacon_get() and the low-level driver must thus
  3997. * call ieee80211_beacon_get() first. ieee80211_get_buffered_bc() returns
  3998. * NULL if the previous generated beacon was not DTIM, so the low-level driver
  3999. * does not need to check for DTIM beacons separately and should be able to
  4000. * use common code for all beacons.
  4001. */
  4002. struct sk_buff *
  4003. ieee80211_get_buffered_bc(struct ieee80211_hw *hw, struct ieee80211_vif *vif);
  4004. /**
  4005. * ieee80211_get_tkip_p1k_iv - get a TKIP phase 1 key for IV32
  4006. *
  4007. * This function returns the TKIP phase 1 key for the given IV32.
  4008. *
  4009. * @keyconf: the parameter passed with the set key
  4010. * @iv32: IV32 to get the P1K for
  4011. * @p1k: a buffer to which the key will be written, as 5 u16 values
  4012. */
  4013. void ieee80211_get_tkip_p1k_iv(struct ieee80211_key_conf *keyconf,
  4014. u32 iv32, u16 *p1k);
  4015. /**
  4016. * ieee80211_get_tkip_p1k - get a TKIP phase 1 key
  4017. *
  4018. * This function returns the TKIP phase 1 key for the IV32 taken
  4019. * from the given packet.
  4020. *
  4021. * @keyconf: the parameter passed with the set key
  4022. * @skb: the packet to take the IV32 value from that will be encrypted
  4023. * with this P1K
  4024. * @p1k: a buffer to which the key will be written, as 5 u16 values
  4025. */
  4026. static inline void ieee80211_get_tkip_p1k(struct ieee80211_key_conf *keyconf,
  4027. struct sk_buff *skb, u16 *p1k)
  4028. {
  4029. struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
  4030. const u8 *data = (u8 *)hdr + ieee80211_hdrlen(hdr->frame_control);
  4031. u32 iv32 = get_unaligned_le32(&data[4]);
  4032. ieee80211_get_tkip_p1k_iv(keyconf, iv32, p1k);
  4033. }
  4034. /**
  4035. * ieee80211_get_tkip_rx_p1k - get a TKIP phase 1 key for RX
  4036. *
  4037. * This function returns the TKIP phase 1 key for the given IV32
  4038. * and transmitter address.
  4039. *
  4040. * @keyconf: the parameter passed with the set key
  4041. * @ta: TA that will be used with the key
  4042. * @iv32: IV32 to get the P1K for
  4043. * @p1k: a buffer to which the key will be written, as 5 u16 values
  4044. */
  4045. void ieee80211_get_tkip_rx_p1k(struct ieee80211_key_conf *keyconf,
  4046. const u8 *ta, u32 iv32, u16 *p1k);
  4047. /**
  4048. * ieee80211_get_tkip_p2k - get a TKIP phase 2 key
  4049. *
  4050. * This function computes the TKIP RC4 key for the IV values
  4051. * in the packet.
  4052. *
  4053. * @keyconf: the parameter passed with the set key
  4054. * @skb: the packet to take the IV32/IV16 values from that will be
  4055. * encrypted with this key
  4056. * @p2k: a buffer to which the key will be written, 16 bytes
  4057. */
  4058. void ieee80211_get_tkip_p2k(struct ieee80211_key_conf *keyconf,
  4059. struct sk_buff *skb, u8 *p2k);
  4060. /**
  4061. * ieee80211_aes_cmac_calculate_k1_k2 - calculate the AES-CMAC sub keys
  4062. *
  4063. * This function computes the two AES-CMAC sub-keys, based on the
  4064. * previously installed master key.
  4065. *
  4066. * @keyconf: the parameter passed with the set key
  4067. * @k1: a buffer to be filled with the 1st sub-key
  4068. * @k2: a buffer to be filled with the 2nd sub-key
  4069. */
  4070. void ieee80211_aes_cmac_calculate_k1_k2(struct ieee80211_key_conf *keyconf,
  4071. u8 *k1, u8 *k2);
  4072. /**
  4073. * struct ieee80211_key_seq - key sequence counter
  4074. *
  4075. * @tkip: TKIP data, containing IV32 and IV16 in host byte order
  4076. * @ccmp: PN data, most significant byte first (big endian,
  4077. * reverse order than in packet)
  4078. * @aes_cmac: PN data, most significant byte first (big endian,
  4079. * reverse order than in packet)
  4080. * @aes_gmac: PN data, most significant byte first (big endian,
  4081. * reverse order than in packet)
  4082. * @gcmp: PN data, most significant byte first (big endian,
  4083. * reverse order than in packet)
  4084. */
  4085. struct ieee80211_key_seq {
  4086. union {
  4087. struct {
  4088. u32 iv32;
  4089. u16 iv16;
  4090. } tkip;
  4091. struct {
  4092. u8 pn[6];
  4093. } ccmp;
  4094. struct {
  4095. u8 pn[6];
  4096. } aes_cmac;
  4097. struct {
  4098. u8 pn[6];
  4099. } aes_gmac;
  4100. struct {
  4101. u8 pn[6];
  4102. } gcmp;
  4103. };
  4104. };
  4105. /**
  4106. * ieee80211_get_key_tx_seq - get key TX sequence counter
  4107. *
  4108. * @keyconf: the parameter passed with the set key
  4109. * @seq: buffer to receive the sequence data
  4110. *
  4111. * This function allows a driver to retrieve the current TX IV/PN
  4112. * for the given key. It must not be called if IV generation is
  4113. * offloaded to the device.
  4114. *
  4115. * Note that this function may only be called when no TX processing
  4116. * can be done concurrently, for example when queues are stopped
  4117. * and the stop has been synchronized.
  4118. */
  4119. void ieee80211_get_key_tx_seq(struct ieee80211_key_conf *keyconf,
  4120. struct ieee80211_key_seq *seq);
  4121. /**
  4122. * ieee80211_get_key_rx_seq - get key RX sequence counter
  4123. *
  4124. * @keyconf: the parameter passed with the set key
  4125. * @tid: The TID, or -1 for the management frame value (CCMP/GCMP only);
  4126. * the value on TID 0 is also used for non-QoS frames. For
  4127. * CMAC, only TID 0 is valid.
  4128. * @seq: buffer to receive the sequence data
  4129. *
  4130. * This function allows a driver to retrieve the current RX IV/PNs
  4131. * for the given key. It must not be called if IV checking is done
  4132. * by the device and not by mac80211.
  4133. *
  4134. * Note that this function may only be called when no RX processing
  4135. * can be done concurrently.
  4136. */
  4137. void ieee80211_get_key_rx_seq(struct ieee80211_key_conf *keyconf,
  4138. int tid, struct ieee80211_key_seq *seq);
  4139. /**
  4140. * ieee80211_set_key_tx_seq - set key TX sequence counter
  4141. *
  4142. * @keyconf: the parameter passed with the set key
  4143. * @seq: new sequence data
  4144. *
  4145. * This function allows a driver to set the current TX IV/PNs for the
  4146. * given key. This is useful when resuming from WoWLAN sleep and the
  4147. * device may have transmitted frames using the PTK, e.g. replies to
  4148. * ARP requests.
  4149. *
  4150. * Note that this function may only be called when no TX processing
  4151. * can be done concurrently.
  4152. */
  4153. void ieee80211_set_key_tx_seq(struct ieee80211_key_conf *keyconf,
  4154. struct ieee80211_key_seq *seq);
  4155. /**
  4156. * ieee80211_set_key_rx_seq - set key RX sequence counter
  4157. *
  4158. * @keyconf: the parameter passed with the set key
  4159. * @tid: The TID, or -1 for the management frame value (CCMP/GCMP only);
  4160. * the value on TID 0 is also used for non-QoS frames. For
  4161. * CMAC, only TID 0 is valid.
  4162. * @seq: new sequence data
  4163. *
  4164. * This function allows a driver to set the current RX IV/PNs for the
  4165. * given key. This is useful when resuming from WoWLAN sleep and GTK
  4166. * rekey may have been done while suspended. It should not be called
  4167. * if IV checking is done by the device and not by mac80211.
  4168. *
  4169. * Note that this function may only be called when no RX processing
  4170. * can be done concurrently.
  4171. */
  4172. void ieee80211_set_key_rx_seq(struct ieee80211_key_conf *keyconf,
  4173. int tid, struct ieee80211_key_seq *seq);
  4174. /**
  4175. * ieee80211_remove_key - remove the given key
  4176. * @keyconf: the parameter passed with the set key
  4177. *
  4178. * Remove the given key. If the key was uploaded to the hardware at the
  4179. * time this function is called, it is not deleted in the hardware but
  4180. * instead assumed to have been removed already.
  4181. *
  4182. * Note that due to locking considerations this function can (currently)
  4183. * only be called during key iteration (ieee80211_iter_keys().)
  4184. */
  4185. void ieee80211_remove_key(struct ieee80211_key_conf *keyconf);
  4186. /**
  4187. * ieee80211_gtk_rekey_add - add a GTK key from rekeying during WoWLAN
  4188. * @vif: the virtual interface to add the key on
  4189. * @keyconf: new key data
  4190. *
  4191. * When GTK rekeying was done while the system was suspended, (a) new
  4192. * key(s) will be available. These will be needed by mac80211 for proper
  4193. * RX processing, so this function allows setting them.
  4194. *
  4195. * The function returns the newly allocated key structure, which will
  4196. * have similar contents to the passed key configuration but point to
  4197. * mac80211-owned memory. In case of errors, the function returns an
  4198. * ERR_PTR(), use IS_ERR() etc.
  4199. *
  4200. * Note that this function assumes the key isn't added to hardware
  4201. * acceleration, so no TX will be done with the key. Since it's a GTK
  4202. * on managed (station) networks, this is true anyway. If the driver
  4203. * calls this function from the resume callback and subsequently uses
  4204. * the return code 1 to reconfigure the device, this key will be part
  4205. * of the reconfiguration.
  4206. *
  4207. * Note that the driver should also call ieee80211_set_key_rx_seq()
  4208. * for the new key for each TID to set up sequence counters properly.
  4209. *
  4210. * IMPORTANT: If this replaces a key that is present in the hardware,
  4211. * then it will attempt to remove it during this call. In many cases
  4212. * this isn't what you want, so call ieee80211_remove_key() first for
  4213. * the key that's being replaced.
  4214. */
  4215. struct ieee80211_key_conf *
  4216. ieee80211_gtk_rekey_add(struct ieee80211_vif *vif,
  4217. struct ieee80211_key_conf *keyconf);
  4218. /**
  4219. * ieee80211_gtk_rekey_notify - notify userspace supplicant of rekeying
  4220. * @vif: virtual interface the rekeying was done on
  4221. * @bssid: The BSSID of the AP, for checking association
  4222. * @replay_ctr: the new replay counter after GTK rekeying
  4223. * @gfp: allocation flags
  4224. */
  4225. void ieee80211_gtk_rekey_notify(struct ieee80211_vif *vif, const u8 *bssid,
  4226. const u8 *replay_ctr, gfp_t gfp);
  4227. /**
  4228. * ieee80211_wake_queue - wake specific queue
  4229. * @hw: pointer as obtained from ieee80211_alloc_hw().
  4230. * @queue: queue number (counted from zero).
  4231. *
  4232. * Drivers should use this function instead of netif_wake_queue.
  4233. */
  4234. void ieee80211_wake_queue(struct ieee80211_hw *hw, int queue);
  4235. /**
  4236. * ieee80211_stop_queue - stop specific queue
  4237. * @hw: pointer as obtained from ieee80211_alloc_hw().
  4238. * @queue: queue number (counted from zero).
  4239. *
  4240. * Drivers should use this function instead of netif_stop_queue.
  4241. */
  4242. void ieee80211_stop_queue(struct ieee80211_hw *hw, int queue);
  4243. /**
  4244. * ieee80211_queue_stopped - test status of the queue
  4245. * @hw: pointer as obtained from ieee80211_alloc_hw().
  4246. * @queue: queue number (counted from zero).
  4247. *
  4248. * Drivers should use this function instead of netif_stop_queue.
  4249. *
  4250. * Return: %true if the queue is stopped. %false otherwise.
  4251. */
  4252. int ieee80211_queue_stopped(struct ieee80211_hw *hw, int queue);
  4253. /**
  4254. * ieee80211_stop_queues - stop all queues
  4255. * @hw: pointer as obtained from ieee80211_alloc_hw().
  4256. *
  4257. * Drivers should use this function instead of netif_stop_queue.
  4258. */
  4259. void ieee80211_stop_queues(struct ieee80211_hw *hw);
  4260. /**
  4261. * ieee80211_wake_queues - wake all queues
  4262. * @hw: pointer as obtained from ieee80211_alloc_hw().
  4263. *
  4264. * Drivers should use this function instead of netif_wake_queue.
  4265. */
  4266. void ieee80211_wake_queues(struct ieee80211_hw *hw);
  4267. /**
  4268. * ieee80211_scan_completed - completed hardware scan
  4269. *
  4270. * When hardware scan offload is used (i.e. the hw_scan() callback is
  4271. * assigned) this function needs to be called by the driver to notify
  4272. * mac80211 that the scan finished. This function can be called from
  4273. * any context, including hardirq context.
  4274. *
  4275. * @hw: the hardware that finished the scan
  4276. * @aborted: set to true if scan was aborted
  4277. */
  4278. void ieee80211_scan_completed(struct ieee80211_hw *hw, bool aborted);
  4279. /**
  4280. * ieee80211_sched_scan_results - got results from scheduled scan
  4281. *
  4282. * When a scheduled scan is running, this function needs to be called by the
  4283. * driver whenever there are new scan results available.
  4284. *
  4285. * @hw: the hardware that is performing scheduled scans
  4286. */
  4287. void ieee80211_sched_scan_results(struct ieee80211_hw *hw);
  4288. /**
  4289. * ieee80211_sched_scan_stopped - inform that the scheduled scan has stopped
  4290. *
  4291. * When a scheduled scan is running, this function can be called by
  4292. * the driver if it needs to stop the scan to perform another task.
  4293. * Usual scenarios are drivers that cannot continue the scheduled scan
  4294. * while associating, for instance.
  4295. *
  4296. * @hw: the hardware that is performing scheduled scans
  4297. */
  4298. void ieee80211_sched_scan_stopped(struct ieee80211_hw *hw);
  4299. /**
  4300. * enum ieee80211_interface_iteration_flags - interface iteration flags
  4301. * @IEEE80211_IFACE_ITER_NORMAL: Iterate over all interfaces that have
  4302. * been added to the driver; However, note that during hardware
  4303. * reconfiguration (after restart_hw) it will iterate over a new
  4304. * interface and over all the existing interfaces even if they
  4305. * haven't been re-added to the driver yet.
  4306. * @IEEE80211_IFACE_ITER_RESUME_ALL: During resume, iterate over all
  4307. * interfaces, even if they haven't been re-added to the driver yet.
  4308. * @IEEE80211_IFACE_ITER_ACTIVE: Iterate only active interfaces (netdev is up).
  4309. */
  4310. enum ieee80211_interface_iteration_flags {
  4311. IEEE80211_IFACE_ITER_NORMAL = 0,
  4312. IEEE80211_IFACE_ITER_RESUME_ALL = BIT(0),
  4313. IEEE80211_IFACE_ITER_ACTIVE = BIT(1),
  4314. };
  4315. /**
  4316. * ieee80211_iterate_interfaces - iterate interfaces
  4317. *
  4318. * This function iterates over the interfaces associated with a given
  4319. * hardware and calls the callback for them. This includes active as well as
  4320. * inactive interfaces. This function allows the iterator function to sleep.
  4321. * Will iterate over a new interface during add_interface().
  4322. *
  4323. * @hw: the hardware struct of which the interfaces should be iterated over
  4324. * @iter_flags: iteration flags, see &enum ieee80211_interface_iteration_flags
  4325. * @iterator: the iterator function to call
  4326. * @data: first argument of the iterator function
  4327. */
  4328. void ieee80211_iterate_interfaces(struct ieee80211_hw *hw, u32 iter_flags,
  4329. void (*iterator)(void *data, u8 *mac,
  4330. struct ieee80211_vif *vif),
  4331. void *data);
  4332. /**
  4333. * ieee80211_iterate_active_interfaces - iterate active interfaces
  4334. *
  4335. * This function iterates over the interfaces associated with a given
  4336. * hardware that are currently active and calls the callback for them.
  4337. * This function allows the iterator function to sleep, when the iterator
  4338. * function is atomic @ieee80211_iterate_active_interfaces_atomic can
  4339. * be used.
  4340. * Does not iterate over a new interface during add_interface().
  4341. *
  4342. * @hw: the hardware struct of which the interfaces should be iterated over
  4343. * @iter_flags: iteration flags, see &enum ieee80211_interface_iteration_flags
  4344. * @iterator: the iterator function to call
  4345. * @data: first argument of the iterator function
  4346. */
  4347. static inline void
  4348. ieee80211_iterate_active_interfaces(struct ieee80211_hw *hw, u32 iter_flags,
  4349. void (*iterator)(void *data, u8 *mac,
  4350. struct ieee80211_vif *vif),
  4351. void *data)
  4352. {
  4353. ieee80211_iterate_interfaces(hw,
  4354. iter_flags | IEEE80211_IFACE_ITER_ACTIVE,
  4355. iterator, data);
  4356. }
  4357. /**
  4358. * ieee80211_iterate_active_interfaces_atomic - iterate active interfaces
  4359. *
  4360. * This function iterates over the interfaces associated with a given
  4361. * hardware that are currently active and calls the callback for them.
  4362. * This function requires the iterator callback function to be atomic,
  4363. * if that is not desired, use @ieee80211_iterate_active_interfaces instead.
  4364. * Does not iterate over a new interface during add_interface().
  4365. *
  4366. * @hw: the hardware struct of which the interfaces should be iterated over
  4367. * @iter_flags: iteration flags, see &enum ieee80211_interface_iteration_flags
  4368. * @iterator: the iterator function to call, cannot sleep
  4369. * @data: first argument of the iterator function
  4370. */
  4371. void ieee80211_iterate_active_interfaces_atomic(struct ieee80211_hw *hw,
  4372. u32 iter_flags,
  4373. void (*iterator)(void *data,
  4374. u8 *mac,
  4375. struct ieee80211_vif *vif),
  4376. void *data);
  4377. /**
  4378. * ieee80211_iterate_active_interfaces_rtnl - iterate active interfaces
  4379. *
  4380. * This function iterates over the interfaces associated with a given
  4381. * hardware that are currently active and calls the callback for them.
  4382. * This version can only be used while holding the RTNL.
  4383. *
  4384. * @hw: the hardware struct of which the interfaces should be iterated over
  4385. * @iter_flags: iteration flags, see &enum ieee80211_interface_iteration_flags
  4386. * @iterator: the iterator function to call, cannot sleep
  4387. * @data: first argument of the iterator function
  4388. */
  4389. void ieee80211_iterate_active_interfaces_rtnl(struct ieee80211_hw *hw,
  4390. u32 iter_flags,
  4391. void (*iterator)(void *data,
  4392. u8 *mac,
  4393. struct ieee80211_vif *vif),
  4394. void *data);
  4395. /**
  4396. * ieee80211_iterate_stations_atomic - iterate stations
  4397. *
  4398. * This function iterates over all stations associated with a given
  4399. * hardware that are currently uploaded to the driver and calls the callback
  4400. * function for them.
  4401. * This function requires the iterator callback function to be atomic,
  4402. *
  4403. * @hw: the hardware struct of which the interfaces should be iterated over
  4404. * @iterator: the iterator function to call, cannot sleep
  4405. * @data: first argument of the iterator function
  4406. */
  4407. void ieee80211_iterate_stations_atomic(struct ieee80211_hw *hw,
  4408. void (*iterator)(void *data,
  4409. struct ieee80211_sta *sta),
  4410. void *data);
  4411. /**
  4412. * ieee80211_queue_work - add work onto the mac80211 workqueue
  4413. *
  4414. * Drivers and mac80211 use this to add work onto the mac80211 workqueue.
  4415. * This helper ensures drivers are not queueing work when they should not be.
  4416. *
  4417. * @hw: the hardware struct for the interface we are adding work for
  4418. * @work: the work we want to add onto the mac80211 workqueue
  4419. */
  4420. void ieee80211_queue_work(struct ieee80211_hw *hw, struct work_struct *work);
  4421. /**
  4422. * ieee80211_queue_delayed_work - add work onto the mac80211 workqueue
  4423. *
  4424. * Drivers and mac80211 use this to queue delayed work onto the mac80211
  4425. * workqueue.
  4426. *
  4427. * @hw: the hardware struct for the interface we are adding work for
  4428. * @dwork: delayable work to queue onto the mac80211 workqueue
  4429. * @delay: number of jiffies to wait before queueing
  4430. */
  4431. void ieee80211_queue_delayed_work(struct ieee80211_hw *hw,
  4432. struct delayed_work *dwork,
  4433. unsigned long delay);
  4434. /**
  4435. * ieee80211_start_tx_ba_session - Start a tx Block Ack session.
  4436. * @sta: the station for which to start a BA session
  4437. * @tid: the TID to BA on.
  4438. * @timeout: session timeout value (in TUs)
  4439. *
  4440. * Return: success if addBA request was sent, failure otherwise
  4441. *
  4442. * Although mac80211/low level driver/user space application can estimate
  4443. * the need to start aggregation on a certain RA/TID, the session level
  4444. * will be managed by the mac80211.
  4445. */
  4446. int ieee80211_start_tx_ba_session(struct ieee80211_sta *sta, u16 tid,
  4447. u16 timeout);
  4448. /**
  4449. * ieee80211_start_tx_ba_cb_irqsafe - low level driver ready to aggregate.
  4450. * @vif: &struct ieee80211_vif pointer from the add_interface callback
  4451. * @ra: receiver address of the BA session recipient.
  4452. * @tid: the TID to BA on.
  4453. *
  4454. * This function must be called by low level driver once it has
  4455. * finished with preparations for the BA session. It can be called
  4456. * from any context.
  4457. */
  4458. void ieee80211_start_tx_ba_cb_irqsafe(struct ieee80211_vif *vif, const u8 *ra,
  4459. u16 tid);
  4460. /**
  4461. * ieee80211_stop_tx_ba_session - Stop a Block Ack session.
  4462. * @sta: the station whose BA session to stop
  4463. * @tid: the TID to stop BA.
  4464. *
  4465. * Return: negative error if the TID is invalid, or no aggregation active
  4466. *
  4467. * Although mac80211/low level driver/user space application can estimate
  4468. * the need to stop aggregation on a certain RA/TID, the session level
  4469. * will be managed by the mac80211.
  4470. */
  4471. int ieee80211_stop_tx_ba_session(struct ieee80211_sta *sta, u16 tid);
  4472. /**
  4473. * ieee80211_stop_tx_ba_cb_irqsafe - low level driver ready to stop aggregate.
  4474. * @vif: &struct ieee80211_vif pointer from the add_interface callback
  4475. * @ra: receiver address of the BA session recipient.
  4476. * @tid: the desired TID to BA on.
  4477. *
  4478. * This function must be called by low level driver once it has
  4479. * finished with preparations for the BA session tear down. It
  4480. * can be called from any context.
  4481. */
  4482. void ieee80211_stop_tx_ba_cb_irqsafe(struct ieee80211_vif *vif, const u8 *ra,
  4483. u16 tid);
  4484. /**
  4485. * ieee80211_find_sta - find a station
  4486. *
  4487. * @vif: virtual interface to look for station on
  4488. * @addr: station's address
  4489. *
  4490. * Return: The station, if found. %NULL otherwise.
  4491. *
  4492. * Note: This function must be called under RCU lock and the
  4493. * resulting pointer is only valid under RCU lock as well.
  4494. */
  4495. struct ieee80211_sta *ieee80211_find_sta(struct ieee80211_vif *vif,
  4496. const u8 *addr);
  4497. /**
  4498. * ieee80211_find_sta_by_ifaddr - find a station on hardware
  4499. *
  4500. * @hw: pointer as obtained from ieee80211_alloc_hw()
  4501. * @addr: remote station's address
  4502. * @localaddr: local address (vif->sdata->vif.addr). Use NULL for 'any'.
  4503. *
  4504. * Return: The station, if found. %NULL otherwise.
  4505. *
  4506. * Note: This function must be called under RCU lock and the
  4507. * resulting pointer is only valid under RCU lock as well.
  4508. *
  4509. * NOTE: You may pass NULL for localaddr, but then you will just get
  4510. * the first STA that matches the remote address 'addr'.
  4511. * We can have multiple STA associated with multiple
  4512. * logical stations (e.g. consider a station connecting to another
  4513. * BSSID on the same AP hardware without disconnecting first).
  4514. * In this case, the result of this method with localaddr NULL
  4515. * is not reliable.
  4516. *
  4517. * DO NOT USE THIS FUNCTION with localaddr NULL if at all possible.
  4518. */
  4519. struct ieee80211_sta *ieee80211_find_sta_by_ifaddr(struct ieee80211_hw *hw,
  4520. const u8 *addr,
  4521. const u8 *localaddr);
  4522. /**
  4523. * ieee80211_sta_block_awake - block station from waking up
  4524. * @hw: the hardware
  4525. * @pubsta: the station
  4526. * @block: whether to block or unblock
  4527. *
  4528. * Some devices require that all frames that are on the queues
  4529. * for a specific station that went to sleep are flushed before
  4530. * a poll response or frames after the station woke up can be
  4531. * delivered to that it. Note that such frames must be rejected
  4532. * by the driver as filtered, with the appropriate status flag.
  4533. *
  4534. * This function allows implementing this mode in a race-free
  4535. * manner.
  4536. *
  4537. * To do this, a driver must keep track of the number of frames
  4538. * still enqueued for a specific station. If this number is not
  4539. * zero when the station goes to sleep, the driver must call
  4540. * this function to force mac80211 to consider the station to
  4541. * be asleep regardless of the station's actual state. Once the
  4542. * number of outstanding frames reaches zero, the driver must
  4543. * call this function again to unblock the station. That will
  4544. * cause mac80211 to be able to send ps-poll responses, and if
  4545. * the station queried in the meantime then frames will also
  4546. * be sent out as a result of this. Additionally, the driver
  4547. * will be notified that the station woke up some time after
  4548. * it is unblocked, regardless of whether the station actually
  4549. * woke up while blocked or not.
  4550. */
  4551. void ieee80211_sta_block_awake(struct ieee80211_hw *hw,
  4552. struct ieee80211_sta *pubsta, bool block);
  4553. /**
  4554. * ieee80211_sta_eosp - notify mac80211 about end of SP
  4555. * @pubsta: the station
  4556. *
  4557. * When a device transmits frames in a way that it can't tell
  4558. * mac80211 in the TX status about the EOSP, it must clear the
  4559. * %IEEE80211_TX_STATUS_EOSP bit and call this function instead.
  4560. * This applies for PS-Poll as well as uAPSD.
  4561. *
  4562. * Note that just like with _tx_status() and _rx() drivers must
  4563. * not mix calls to irqsafe/non-irqsafe versions, this function
  4564. * must not be mixed with those either. Use the all irqsafe, or
  4565. * all non-irqsafe, don't mix!
  4566. *
  4567. * NB: the _irqsafe version of this function doesn't exist, no
  4568. * driver needs it right now. Don't call this function if
  4569. * you'd need the _irqsafe version, look at the git history
  4570. * and restore the _irqsafe version!
  4571. */
  4572. void ieee80211_sta_eosp(struct ieee80211_sta *pubsta);
  4573. /**
  4574. * ieee80211_iter_keys - iterate keys programmed into the device
  4575. * @hw: pointer obtained from ieee80211_alloc_hw()
  4576. * @vif: virtual interface to iterate, may be %NULL for all
  4577. * @iter: iterator function that will be called for each key
  4578. * @iter_data: custom data to pass to the iterator function
  4579. *
  4580. * This function can be used to iterate all the keys known to
  4581. * mac80211, even those that weren't previously programmed into
  4582. * the device. This is intended for use in WoWLAN if the device
  4583. * needs reprogramming of the keys during suspend. Note that due
  4584. * to locking reasons, it is also only safe to call this at few
  4585. * spots since it must hold the RTNL and be able to sleep.
  4586. *
  4587. * The order in which the keys are iterated matches the order
  4588. * in which they were originally installed and handed to the
  4589. * set_key callback.
  4590. */
  4591. void ieee80211_iter_keys(struct ieee80211_hw *hw,
  4592. struct ieee80211_vif *vif,
  4593. void (*iter)(struct ieee80211_hw *hw,
  4594. struct ieee80211_vif *vif,
  4595. struct ieee80211_sta *sta,
  4596. struct ieee80211_key_conf *key,
  4597. void *data),
  4598. void *iter_data);
  4599. /**
  4600. * ieee80211_iter_chan_contexts_atomic - iterate channel contexts
  4601. * @hw: pointre obtained from ieee80211_alloc_hw().
  4602. * @iter: iterator function
  4603. * @iter_data: data passed to iterator function
  4604. *
  4605. * Iterate all active channel contexts. This function is atomic and
  4606. * doesn't acquire any locks internally that might be held in other
  4607. * places while calling into the driver.
  4608. *
  4609. * The iterator will not find a context that's being added (during
  4610. * the driver callback to add it) but will find it while it's being
  4611. * removed.
  4612. *
  4613. * Note that during hardware restart, all contexts that existed
  4614. * before the restart are considered already present so will be
  4615. * found while iterating, whether they've been re-added already
  4616. * or not.
  4617. */
  4618. void ieee80211_iter_chan_contexts_atomic(
  4619. struct ieee80211_hw *hw,
  4620. void (*iter)(struct ieee80211_hw *hw,
  4621. struct ieee80211_chanctx_conf *chanctx_conf,
  4622. void *data),
  4623. void *iter_data);
  4624. /**
  4625. * ieee80211_ap_probereq_get - retrieve a Probe Request template
  4626. * @hw: pointer obtained from ieee80211_alloc_hw().
  4627. * @vif: &struct ieee80211_vif pointer from the add_interface callback.
  4628. *
  4629. * Creates a Probe Request template which can, for example, be uploaded to
  4630. * hardware. The template is filled with bssid, ssid and supported rate
  4631. * information. This function must only be called from within the
  4632. * .bss_info_changed callback function and only in managed mode. The function
  4633. * is only useful when the interface is associated, otherwise it will return
  4634. * %NULL.
  4635. *
  4636. * Return: The Probe Request template. %NULL on error.
  4637. */
  4638. struct sk_buff *ieee80211_ap_probereq_get(struct ieee80211_hw *hw,
  4639. struct ieee80211_vif *vif);
  4640. /**
  4641. * ieee80211_beacon_loss - inform hardware does not receive beacons
  4642. *
  4643. * @vif: &struct ieee80211_vif pointer from the add_interface callback.
  4644. *
  4645. * When beacon filtering is enabled with %IEEE80211_VIF_BEACON_FILTER and
  4646. * %IEEE80211_CONF_PS is set, the driver needs to inform whenever the
  4647. * hardware is not receiving beacons with this function.
  4648. */
  4649. void ieee80211_beacon_loss(struct ieee80211_vif *vif);
  4650. /**
  4651. * ieee80211_connection_loss - inform hardware has lost connection to the AP
  4652. *
  4653. * @vif: &struct ieee80211_vif pointer from the add_interface callback.
  4654. *
  4655. * When beacon filtering is enabled with %IEEE80211_VIF_BEACON_FILTER, and
  4656. * %IEEE80211_CONF_PS and %IEEE80211_HW_CONNECTION_MONITOR are set, the driver
  4657. * needs to inform if the connection to the AP has been lost.
  4658. * The function may also be called if the connection needs to be terminated
  4659. * for some other reason, even if %IEEE80211_HW_CONNECTION_MONITOR isn't set.
  4660. *
  4661. * This function will cause immediate change to disassociated state,
  4662. * without connection recovery attempts.
  4663. */
  4664. void ieee80211_connection_loss(struct ieee80211_vif *vif);
  4665. /**
  4666. * ieee80211_resume_disconnect - disconnect from AP after resume
  4667. *
  4668. * @vif: &struct ieee80211_vif pointer from the add_interface callback.
  4669. *
  4670. * Instructs mac80211 to disconnect from the AP after resume.
  4671. * Drivers can use this after WoWLAN if they know that the
  4672. * connection cannot be kept up, for example because keys were
  4673. * used while the device was asleep but the replay counters or
  4674. * similar cannot be retrieved from the device during resume.
  4675. *
  4676. * Note that due to implementation issues, if the driver uses
  4677. * the reconfiguration functionality during resume the interface
  4678. * will still be added as associated first during resume and then
  4679. * disconnect normally later.
  4680. *
  4681. * This function can only be called from the resume callback and
  4682. * the driver must not be holding any of its own locks while it
  4683. * calls this function, or at least not any locks it needs in the
  4684. * key configuration paths (if it supports HW crypto).
  4685. */
  4686. void ieee80211_resume_disconnect(struct ieee80211_vif *vif);
  4687. /**
  4688. * ieee80211_cqm_rssi_notify - inform a configured connection quality monitoring
  4689. * rssi threshold triggered
  4690. *
  4691. * @vif: &struct ieee80211_vif pointer from the add_interface callback.
  4692. * @rssi_event: the RSSI trigger event type
  4693. * @gfp: context flags
  4694. *
  4695. * When the %IEEE80211_VIF_SUPPORTS_CQM_RSSI is set, and a connection quality
  4696. * monitoring is configured with an rssi threshold, the driver will inform
  4697. * whenever the rssi level reaches the threshold.
  4698. */
  4699. void ieee80211_cqm_rssi_notify(struct ieee80211_vif *vif,
  4700. enum nl80211_cqm_rssi_threshold_event rssi_event,
  4701. gfp_t gfp);
  4702. /**
  4703. * ieee80211_cqm_beacon_loss_notify - inform CQM of beacon loss
  4704. *
  4705. * @vif: &struct ieee80211_vif pointer from the add_interface callback.
  4706. * @gfp: context flags
  4707. */
  4708. void ieee80211_cqm_beacon_loss_notify(struct ieee80211_vif *vif, gfp_t gfp);
  4709. /**
  4710. * ieee80211_radar_detected - inform that a radar was detected
  4711. *
  4712. * @hw: pointer as obtained from ieee80211_alloc_hw()
  4713. */
  4714. void ieee80211_radar_detected(struct ieee80211_hw *hw);
  4715. /**
  4716. * ieee80211_chswitch_done - Complete channel switch process
  4717. * @vif: &struct ieee80211_vif pointer from the add_interface callback.
  4718. * @success: make the channel switch successful or not
  4719. *
  4720. * Complete the channel switch post-process: set the new operational channel
  4721. * and wake up the suspended queues.
  4722. */
  4723. void ieee80211_chswitch_done(struct ieee80211_vif *vif, bool success);
  4724. /**
  4725. * ieee80211_request_smps - request SM PS transition
  4726. * @vif: &struct ieee80211_vif pointer from the add_interface callback.
  4727. * @smps_mode: new SM PS mode
  4728. *
  4729. * This allows the driver to request an SM PS transition in managed
  4730. * mode. This is useful when the driver has more information than
  4731. * the stack about possible interference, for example by bluetooth.
  4732. */
  4733. void ieee80211_request_smps(struct ieee80211_vif *vif,
  4734. enum ieee80211_smps_mode smps_mode);
  4735. /**
  4736. * ieee80211_ready_on_channel - notification of remain-on-channel start
  4737. * @hw: pointer as obtained from ieee80211_alloc_hw()
  4738. */
  4739. void ieee80211_ready_on_channel(struct ieee80211_hw *hw);
  4740. /**
  4741. * ieee80211_remain_on_channel_expired - remain_on_channel duration expired
  4742. * @hw: pointer as obtained from ieee80211_alloc_hw()
  4743. */
  4744. void ieee80211_remain_on_channel_expired(struct ieee80211_hw *hw);
  4745. /**
  4746. * ieee80211_stop_rx_ba_session - callback to stop existing BA sessions
  4747. *
  4748. * in order not to harm the system performance and user experience, the device
  4749. * may request not to allow any rx ba session and tear down existing rx ba
  4750. * sessions based on system constraints such as periodic BT activity that needs
  4751. * to limit wlan activity (eg.sco or a2dp)."
  4752. * in such cases, the intention is to limit the duration of the rx ppdu and
  4753. * therefore prevent the peer device to use a-mpdu aggregation.
  4754. *
  4755. * @vif: &struct ieee80211_vif pointer from the add_interface callback.
  4756. * @ba_rx_bitmap: Bit map of open rx ba per tid
  4757. * @addr: & to bssid mac address
  4758. */
  4759. void ieee80211_stop_rx_ba_session(struct ieee80211_vif *vif, u16 ba_rx_bitmap,
  4760. const u8 *addr);
  4761. /**
  4762. * ieee80211_send_bar - send a BlockAckReq frame
  4763. *
  4764. * can be used to flush pending frames from the peer's aggregation reorder
  4765. * buffer.
  4766. *
  4767. * @vif: &struct ieee80211_vif pointer from the add_interface callback.
  4768. * @ra: the peer's destination address
  4769. * @tid: the TID of the aggregation session
  4770. * @ssn: the new starting sequence number for the receiver
  4771. */
  4772. void ieee80211_send_bar(struct ieee80211_vif *vif, u8 *ra, u16 tid, u16 ssn);
  4773. /**
  4774. * ieee80211_start_rx_ba_session_offl - start a Rx BA session
  4775. *
  4776. * Some device drivers may offload part of the Rx aggregation flow including
  4777. * AddBa/DelBa negotiation but may otherwise be incapable of full Rx
  4778. * reordering.
  4779. *
  4780. * Create structures responsible for reordering so device drivers may call here
  4781. * when they complete AddBa negotiation.
  4782. *
  4783. * @vif: &struct ieee80211_vif pointer from the add_interface callback
  4784. * @addr: station mac address
  4785. * @tid: the rx tid
  4786. */
  4787. void ieee80211_start_rx_ba_session_offl(struct ieee80211_vif *vif,
  4788. const u8 *addr, u16 tid);
  4789. /**
  4790. * ieee80211_stop_rx_ba_session_offl - stop a Rx BA session
  4791. *
  4792. * Some device drivers may offload part of the Rx aggregation flow including
  4793. * AddBa/DelBa negotiation but may otherwise be incapable of full Rx
  4794. * reordering.
  4795. *
  4796. * Destroy structures responsible for reordering so device drivers may call here
  4797. * when they complete DelBa negotiation.
  4798. *
  4799. * @vif: &struct ieee80211_vif pointer from the add_interface callback
  4800. * @addr: station mac address
  4801. * @tid: the rx tid
  4802. */
  4803. void ieee80211_stop_rx_ba_session_offl(struct ieee80211_vif *vif,
  4804. const u8 *addr, u16 tid);
  4805. /* Rate control API */
  4806. /**
  4807. * struct ieee80211_tx_rate_control - rate control information for/from RC algo
  4808. *
  4809. * @hw: The hardware the algorithm is invoked for.
  4810. * @sband: The band this frame is being transmitted on.
  4811. * @bss_conf: the current BSS configuration
  4812. * @skb: the skb that will be transmitted, the control information in it needs
  4813. * to be filled in
  4814. * @reported_rate: The rate control algorithm can fill this in to indicate
  4815. * which rate should be reported to userspace as the current rate and
  4816. * used for rate calculations in the mesh network.
  4817. * @rts: whether RTS will be used for this frame because it is longer than the
  4818. * RTS threshold
  4819. * @short_preamble: whether mac80211 will request short-preamble transmission
  4820. * if the selected rate supports it
  4821. * @max_rate_idx: user-requested maximum (legacy) rate
  4822. * (deprecated; this will be removed once drivers get updated to use
  4823. * rate_idx_mask)
  4824. * @rate_idx_mask: user-requested (legacy) rate mask
  4825. * @rate_idx_mcs_mask: user-requested MCS rate mask (NULL if not in use)
  4826. * @bss: whether this frame is sent out in AP or IBSS mode
  4827. */
  4828. struct ieee80211_tx_rate_control {
  4829. struct ieee80211_hw *hw;
  4830. struct ieee80211_supported_band *sband;
  4831. struct ieee80211_bss_conf *bss_conf;
  4832. struct sk_buff *skb;
  4833. struct ieee80211_tx_rate reported_rate;
  4834. bool rts, short_preamble;
  4835. u8 max_rate_idx;
  4836. u32 rate_idx_mask;
  4837. u8 *rate_idx_mcs_mask;
  4838. bool bss;
  4839. };
  4840. struct rate_control_ops {
  4841. const char *name;
  4842. void *(*alloc)(struct ieee80211_hw *hw, struct dentry *debugfsdir);
  4843. void (*free)(void *priv);
  4844. void *(*alloc_sta)(void *priv, struct ieee80211_sta *sta, gfp_t gfp);
  4845. void (*rate_init)(void *priv, struct ieee80211_supported_band *sband,
  4846. struct cfg80211_chan_def *chandef,
  4847. struct ieee80211_sta *sta, void *priv_sta);
  4848. void (*rate_update)(void *priv, struct ieee80211_supported_band *sband,
  4849. struct cfg80211_chan_def *chandef,
  4850. struct ieee80211_sta *sta, void *priv_sta,
  4851. u32 changed);
  4852. void (*free_sta)(void *priv, struct ieee80211_sta *sta,
  4853. void *priv_sta);
  4854. void (*tx_status_noskb)(void *priv,
  4855. struct ieee80211_supported_band *sband,
  4856. struct ieee80211_sta *sta, void *priv_sta,
  4857. struct ieee80211_tx_info *info);
  4858. void (*tx_status)(void *priv, struct ieee80211_supported_band *sband,
  4859. struct ieee80211_sta *sta, void *priv_sta,
  4860. struct sk_buff *skb);
  4861. void (*get_rate)(void *priv, struct ieee80211_sta *sta, void *priv_sta,
  4862. struct ieee80211_tx_rate_control *txrc);
  4863. void (*add_sta_debugfs)(void *priv, void *priv_sta,
  4864. struct dentry *dir);
  4865. void (*remove_sta_debugfs)(void *priv, void *priv_sta);
  4866. u32 (*get_expected_throughput)(void *priv_sta);
  4867. };
  4868. static inline int rate_supported(struct ieee80211_sta *sta,
  4869. enum ieee80211_band band,
  4870. int index)
  4871. {
  4872. return (sta == NULL || sta->supp_rates[band] & BIT(index));
  4873. }
  4874. /**
  4875. * rate_control_send_low - helper for drivers for management/no-ack frames
  4876. *
  4877. * Rate control algorithms that agree to use the lowest rate to
  4878. * send management frames and NO_ACK data with the respective hw
  4879. * retries should use this in the beginning of their mac80211 get_rate
  4880. * callback. If true is returned the rate control can simply return.
  4881. * If false is returned we guarantee that sta and sta and priv_sta is
  4882. * not null.
  4883. *
  4884. * Rate control algorithms wishing to do more intelligent selection of
  4885. * rate for multicast/broadcast frames may choose to not use this.
  4886. *
  4887. * @sta: &struct ieee80211_sta pointer to the target destination. Note
  4888. * that this may be null.
  4889. * @priv_sta: private rate control structure. This may be null.
  4890. * @txrc: rate control information we sholud populate for mac80211.
  4891. */
  4892. bool rate_control_send_low(struct ieee80211_sta *sta,
  4893. void *priv_sta,
  4894. struct ieee80211_tx_rate_control *txrc);
  4895. static inline s8
  4896. rate_lowest_index(struct ieee80211_supported_band *sband,
  4897. struct ieee80211_sta *sta)
  4898. {
  4899. int i;
  4900. for (i = 0; i < sband->n_bitrates; i++)
  4901. if (rate_supported(sta, sband->band, i))
  4902. return i;
  4903. /* warn when we cannot find a rate. */
  4904. WARN_ON_ONCE(1);
  4905. /* and return 0 (the lowest index) */
  4906. return 0;
  4907. }
  4908. static inline
  4909. bool rate_usable_index_exists(struct ieee80211_supported_band *sband,
  4910. struct ieee80211_sta *sta)
  4911. {
  4912. unsigned int i;
  4913. for (i = 0; i < sband->n_bitrates; i++)
  4914. if (rate_supported(sta, sband->band, i))
  4915. return true;
  4916. return false;
  4917. }
  4918. /**
  4919. * rate_control_set_rates - pass the sta rate selection to mac80211/driver
  4920. *
  4921. * When not doing a rate control probe to test rates, rate control should pass
  4922. * its rate selection to mac80211. If the driver supports receiving a station
  4923. * rate table, it will use it to ensure that frames are always sent based on
  4924. * the most recent rate control module decision.
  4925. *
  4926. * @hw: pointer as obtained from ieee80211_alloc_hw()
  4927. * @pubsta: &struct ieee80211_sta pointer to the target destination.
  4928. * @rates: new tx rate set to be used for this station.
  4929. */
  4930. int rate_control_set_rates(struct ieee80211_hw *hw,
  4931. struct ieee80211_sta *pubsta,
  4932. struct ieee80211_sta_rates *rates);
  4933. int ieee80211_rate_control_register(const struct rate_control_ops *ops);
  4934. void ieee80211_rate_control_unregister(const struct rate_control_ops *ops);
  4935. static inline bool
  4936. conf_is_ht20(struct ieee80211_conf *conf)
  4937. {
  4938. return conf->chandef.width == NL80211_CHAN_WIDTH_20;
  4939. }
  4940. static inline bool
  4941. conf_is_ht40_minus(struct ieee80211_conf *conf)
  4942. {
  4943. return conf->chandef.width == NL80211_CHAN_WIDTH_40 &&
  4944. conf->chandef.center_freq1 < conf->chandef.chan->center_freq;
  4945. }
  4946. static inline bool
  4947. conf_is_ht40_plus(struct ieee80211_conf *conf)
  4948. {
  4949. return conf->chandef.width == NL80211_CHAN_WIDTH_40 &&
  4950. conf->chandef.center_freq1 > conf->chandef.chan->center_freq;
  4951. }
  4952. static inline bool
  4953. conf_is_ht40(struct ieee80211_conf *conf)
  4954. {
  4955. return conf->chandef.width == NL80211_CHAN_WIDTH_40;
  4956. }
  4957. static inline bool
  4958. conf_is_ht(struct ieee80211_conf *conf)
  4959. {
  4960. return (conf->chandef.width != NL80211_CHAN_WIDTH_5) &&
  4961. (conf->chandef.width != NL80211_CHAN_WIDTH_10) &&
  4962. (conf->chandef.width != NL80211_CHAN_WIDTH_20_NOHT);
  4963. }
  4964. static inline enum nl80211_iftype
  4965. ieee80211_iftype_p2p(enum nl80211_iftype type, bool p2p)
  4966. {
  4967. if (p2p) {
  4968. switch (type) {
  4969. case NL80211_IFTYPE_STATION:
  4970. return NL80211_IFTYPE_P2P_CLIENT;
  4971. case NL80211_IFTYPE_AP:
  4972. return NL80211_IFTYPE_P2P_GO;
  4973. default:
  4974. break;
  4975. }
  4976. }
  4977. return type;
  4978. }
  4979. static inline enum nl80211_iftype
  4980. ieee80211_vif_type_p2p(struct ieee80211_vif *vif)
  4981. {
  4982. return ieee80211_iftype_p2p(vif->type, vif->p2p);
  4983. }
  4984. void ieee80211_enable_rssi_reports(struct ieee80211_vif *vif,
  4985. int rssi_min_thold,
  4986. int rssi_max_thold);
  4987. void ieee80211_disable_rssi_reports(struct ieee80211_vif *vif);
  4988. /**
  4989. * ieee80211_ave_rssi - report the average RSSI for the specified interface
  4990. *
  4991. * @vif: the specified virtual interface
  4992. *
  4993. * Note: This function assumes that the given vif is valid.
  4994. *
  4995. * Return: The average RSSI value for the requested interface, or 0 if not
  4996. * applicable.
  4997. */
  4998. int ieee80211_ave_rssi(struct ieee80211_vif *vif);
  4999. /**
  5000. * ieee80211_report_wowlan_wakeup - report WoWLAN wakeup
  5001. * @vif: virtual interface
  5002. * @wakeup: wakeup reason(s)
  5003. * @gfp: allocation flags
  5004. *
  5005. * See cfg80211_report_wowlan_wakeup().
  5006. */
  5007. void ieee80211_report_wowlan_wakeup(struct ieee80211_vif *vif,
  5008. struct cfg80211_wowlan_wakeup *wakeup,
  5009. gfp_t gfp);
  5010. /**
  5011. * ieee80211_tx_prepare_skb - prepare an 802.11 skb for transmission
  5012. * @hw: pointer as obtained from ieee80211_alloc_hw()
  5013. * @vif: virtual interface
  5014. * @skb: frame to be sent from within the driver
  5015. * @band: the band to transmit on
  5016. * @sta: optional pointer to get the station to send the frame to
  5017. *
  5018. * Note: must be called under RCU lock
  5019. */
  5020. bool ieee80211_tx_prepare_skb(struct ieee80211_hw *hw,
  5021. struct ieee80211_vif *vif, struct sk_buff *skb,
  5022. int band, struct ieee80211_sta **sta);
  5023. /**
  5024. * struct ieee80211_noa_data - holds temporary data for tracking P2P NoA state
  5025. *
  5026. * @next_tsf: TSF timestamp of the next absent state change
  5027. * @has_next_tsf: next absent state change event pending
  5028. *
  5029. * @absent: descriptor bitmask, set if GO is currently absent
  5030. *
  5031. * private:
  5032. *
  5033. * @count: count fields from the NoA descriptors
  5034. * @desc: adjusted data from the NoA
  5035. */
  5036. struct ieee80211_noa_data {
  5037. u32 next_tsf;
  5038. bool has_next_tsf;
  5039. u8 absent;
  5040. u8 count[IEEE80211_P2P_NOA_DESC_MAX];
  5041. struct {
  5042. u32 start;
  5043. u32 duration;
  5044. u32 interval;
  5045. } desc[IEEE80211_P2P_NOA_DESC_MAX];
  5046. };
  5047. /**
  5048. * ieee80211_parse_p2p_noa - initialize NoA tracking data from P2P IE
  5049. *
  5050. * @attr: P2P NoA IE
  5051. * @data: NoA tracking data
  5052. * @tsf: current TSF timestamp
  5053. *
  5054. * Return: number of successfully parsed descriptors
  5055. */
  5056. int ieee80211_parse_p2p_noa(const struct ieee80211_p2p_noa_attr *attr,
  5057. struct ieee80211_noa_data *data, u32 tsf);
  5058. /**
  5059. * ieee80211_update_p2p_noa - get next pending P2P GO absent state change
  5060. *
  5061. * @data: NoA tracking data
  5062. * @tsf: current TSF timestamp
  5063. */
  5064. void ieee80211_update_p2p_noa(struct ieee80211_noa_data *data, u32 tsf);
  5065. /**
  5066. * ieee80211_tdls_oper - request userspace to perform a TDLS operation
  5067. * @vif: virtual interface
  5068. * @peer: the peer's destination address
  5069. * @oper: the requested TDLS operation
  5070. * @reason_code: reason code for the operation, valid for TDLS teardown
  5071. * @gfp: allocation flags
  5072. *
  5073. * See cfg80211_tdls_oper_request().
  5074. */
  5075. void ieee80211_tdls_oper_request(struct ieee80211_vif *vif, const u8 *peer,
  5076. enum nl80211_tdls_operation oper,
  5077. u16 reason_code, gfp_t gfp);
  5078. /**
  5079. * ieee80211_reserve_tid - request to reserve a specific TID
  5080. *
  5081. * There is sometimes a need (such as in TDLS) for blocking the driver from
  5082. * using a specific TID so that the FW can use it for certain operations such
  5083. * as sending PTI requests. To make sure that the driver doesn't use that TID,
  5084. * this function must be called as it flushes out packets on this TID and marks
  5085. * it as blocked, so that any transmit for the station on this TID will be
  5086. * redirected to the alternative TID in the same AC.
  5087. *
  5088. * Note that this function blocks and may call back into the driver, so it
  5089. * should be called without driver locks held. Also note this function should
  5090. * only be called from the driver's @sta_state callback.
  5091. *
  5092. * @sta: the station to reserve the TID for
  5093. * @tid: the TID to reserve
  5094. *
  5095. * Returns: 0 on success, else on failure
  5096. */
  5097. int ieee80211_reserve_tid(struct ieee80211_sta *sta, u8 tid);
  5098. /**
  5099. * ieee80211_unreserve_tid - request to unreserve a specific TID
  5100. *
  5101. * Once there is no longer any need for reserving a certain TID, this function
  5102. * should be called, and no longer will packets have their TID modified for
  5103. * preventing use of this TID in the driver.
  5104. *
  5105. * Note that this function blocks and acquires a lock, so it should be called
  5106. * without driver locks held. Also note this function should only be called
  5107. * from the driver's @sta_state callback.
  5108. *
  5109. * @sta: the station
  5110. * @tid: the TID to unreserve
  5111. */
  5112. void ieee80211_unreserve_tid(struct ieee80211_sta *sta, u8 tid);
  5113. /**
  5114. * ieee80211_tx_dequeue - dequeue a packet from a software tx queue
  5115. *
  5116. * @hw: pointer as obtained from ieee80211_alloc_hw()
  5117. * @txq: pointer obtained from station or virtual interface
  5118. *
  5119. * Returns the skb if successful, %NULL if no frame was available.
  5120. */
  5121. struct sk_buff *ieee80211_tx_dequeue(struct ieee80211_hw *hw,
  5122. struct ieee80211_txq *txq);
  5123. #endif /* MAC80211_H */