mac80211.h 210 KB

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