mac80211.h 212 KB

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